aboutsummaryrefslogtreecommitdiffstats
path: root/tests/sort/Makefile.am (follow)
AgeCommit message (Collapse)AuthorFilesLines
2007-05-13Remove the generated tests/*/Makefile.am files from version control.Jim Meyering1-99/+0
* tests/cut/Makefile.am: git-remove this generated file. * tests/head/Makefile.am: Likewise. * tests/join/Makefile.am: Likewise. * tests/pr/Makefile.am: Likewise. * tests/sort/Makefile.am: Likewise. * tests/tac/Makefile.am: Likewise. * tests/tail/Makefile.am: Likewise. * tests/test/Makefile.am: Likewise. * tests/tr/Makefile.am: Likewise. * tests/uniq/Makefile.am: Likewise. * tests/wc/Makefile.am: Likewise. * .cvsignore, .gitignore: Ignore these generated files. * src/.cvsignore, src/.gitignore: Add chcon here, ... * .cvsignore, .gitignore: ... not here.
2007-01-26merge from trunkJim Meyering1-35/+37
2007-01-13Put CU_TEST_NAME in the environment for each test run by "make check".Jim Meyering1-0/+1
* Transform all Makefile.am files so that when running "make check", CU_TEST_NAME is set to the name of the test. This is so that when I run valgrind-enabled (--log-file-qualifier=CU_TEST_NAME) "make check" on the entire package it is more convenient to map a leak or error found in a valgrind log file back to the offending test. Use this command: (echo tests/Makefile.am.in; find tests -name Makefile.am) \ |xargs perl -pi -e '/^(\s*)PATH=...VG_PATH_PREFIX/ and ' \ -e 'print $1,q|CU_TEST_NAME=`basename $(abs_srcdir)`,$$tst |,"\\\n"'
2006-12-13Remove some arbitrary restrictions on size fields,Paul Eggert1-2/+2
so that commands like "sort -k 18446744073709551616" no longer fail merely because 18446744073709551616 doesn't fit in uintmax_t. The trick is that these fields can all be treated as effectively infinity; their exact values don't matter, since no internal buffer can be that long. * src/join.c (string_to_join_field): Verify that SIZE_MAX <= ULONG_MAX if the code assumes this. Silently truncate too-large values to SIZE_MAX, as the remaining code will do the right thing in this case. * src/sort.c (parse_field_count): Likewise. * src/uniq.c (size_opt, main): Likewise. * tests/join/Test.pm (bigfield): New test. * tests/sort/Test.pm (bigfield): New test. * tests/uniq/Test.pm (121): New test. Signed-off-by: Jim Meyering <jim@meyering.net>
2006-08-19Some of my 2006-07-03 changes to tests/*/Makefile.am were beingJim Meyering1-3/+4
backed out due to updates provoked by the copyright changes. * tests/Makefile.am.in (PATH): Prepend $(VG_PATH_PREFIX), so that it propagates to the derived Makefile.am files. ($(srcdir)/Makefile.am): Mark generated .am files as read-only, so we don't mistakenly edit them again. * tests/cut/Makefile.am: Regenerate. * tests/head/Makefile.am: Likewise. * tests/join/Makefile.am: Likewise. * tests/pr/Makefile.am: Likewise. * tests/sort/Makefile.am: Likewise. * tests/tac/Makefile.am: Likewise. * tests/tail/Makefile.am: Likewise. * tests/test/Makefile.am: Likewise. * tests/tr/Makefile.am: Likewise. * tests/uniq/Makefile.am: Likewise. * tests/wc/Makefile.am: Likewise.
2006-08-17Add/fix copyright notices and adjust to latest GNU FDL.Paul Eggert1-1/+19
2006-07-03* tests/Makefile.am, tests/*/Makefile.am: (TESTS_ENVIRONMENT):Jim Meyering1-1/+1
Add $VG_PATH_PREFIX as a prefix to $PATH
2005-12-15Regenerate.Paul Eggert1-3/+6
2004-05-31regenerateJim Meyering1-2/+5
2004-02-11regenerate from patched Makefile.am.inJim Meyering1-2/+2
2003-10-18regenerateJim Meyering1-3/+3
2003-09-04.Jim Meyering1-2/+3
2003-05-14.Jim Meyering1-1/+1
2003-04-15regenerate, using new ../Makefile.am.inJim Meyering1-1/+0
2003-04-05*** empty log message ***Jim Meyering1-1/+1
2001-08-04.Jim Meyering1-31/+31
2001-03-13.Jim Meyering1-3/+4
2000-08-03.Jim Meyering1-2/+2
1999-05-22.Jim Meyering1-2/+2
1999-05-20.Jim Meyering1-2/+3
1999-05-09.Jim Meyering1-2/+3
1998-07-26.Jim Meyering1-2/+2
1998-06-18.Jim Meyering1-0/+2
1998-05-03.Jim Meyering1-2/+2
1998-05-02.Jim Meyering1-2/+2
1998-04-27*** empty log message ***Jim Meyering1-2/+4
1998-02-04.Jim Meyering1-1/+1
1998-02-04.Jim Meyering1-22/+13
1997-11-12add -*-Makefile-*-Jim Meyering1-1/+1
1997-11-09add -*-Makefile-*- to first lineJim Meyering1-1/+1
1997-10-26.Jim Meyering1-2/+4
1997-10-14.Jim Meyering1-26/+30
1997-10-10.Jim Meyering1-2/+2
1997-09-14.Jim Meyering1-2/+2
1997-07-04regenerate with updated ../Makefile.am.inJim Meyering1-9/+10
1997-01-30.Jim Meyering1-38/+26
1996-12-22.Jim Meyering1-4/+6
1996-12-22Clone the Makefile.am from join-test.Jim Meyering1-18/+57
Replace only the definition of $x and the auto-generated lists of test files.
1996-12-10mk-script.pl: Rename from build-script.pl.Jim Meyering1-5/+3
1996-11-25(t): Add names of those 5 tests.Jim Meyering1-1/+2
1996-11-02Add test 17.Jim Meyering1-1/+1
1996-09-26(t): Factor out .in suffix.Jim Meyering1-14/+11
Include new test: t16a.
1996-08-26(EXTRA_DIST): Add $x-tests.Jim Meyering1-2/+2
($x-tests): Guard dependencies with @MAINT@.
1996-08-18.Jim Meyering1-0/+41