diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2006-08-17 19:58:17 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2006-08-17 19:58:17 +0000 |
commit | 218fa5c61ba2f211b175aa943faa7eea286ff69e (patch) | |
tree | d54a459a9d5016a567e168b385cc3c4670f603ef /tests/sort-time | |
parent | 23f176cae633cc795a8d7a0becb56ba1481f32ba (diff) | |
download | coreutils-218fa5c61ba2f211b175aa943faa7eea286ff69e.tar.xz |
Add/fix copyright notices and adjust to latest GNU FDL.
Diffstat (limited to 'tests/sort-time')
-rw-r--r-- | tests/sort-time/Makefile | 17 | ||||
-rw-r--r-- | tests/sort-time/README | 19 | ||||
-rwxr-xr-x | tests/sort-time/rand-gen | 18 |
3 files changed, 54 insertions, 0 deletions
diff --git a/tests/sort-time/Makefile b/tests/sort-time/Makefile index 559c088cd..3bd8f1603 100644 --- a/tests/sort-time/Makefile +++ b/tests/sort-time/Makefile @@ -1,3 +1,20 @@ +# Copyright (C) 1997 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +# 02110-1301, USA. + N = 1000000 dot30 = .............................. diff --git a/tests/sort-time/README b/tests/sort-time/README index d45862226..14b7e2119 100644 --- a/tests/sort-time/README +++ b/tests/sort-time/README @@ -1,4 +1,23 @@ # determine whether it's worthwhile to add a --line-length=N option to sort. + +# Copyright (C) 1997 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +# 02110-1301, USA. + + # Add the option and perform this test: # # Test method: diff --git a/tests/sort-time/rand-gen b/tests/sort-time/rand-gen index f4f110b41..d0bab646f 100755 --- a/tests/sort-time/rand-gen +++ b/tests/sort-time/rand-gen @@ -3,6 +3,24 @@ # Each value is in the range [0,1). # Usage: rand n +# Copyright (C) 1997 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +# 02110-1301, USA. + + # Use only the basename from the path to this executable in error messages. ($program_name = $0) =~ s|.*/||; |