diff options
author | Jim Meyering <jim@meyering.net> | 2007-08-18 08:50:00 +0200 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-08-18 08:53:31 +0200 |
commit | b78c6b68f77d55b6aeb57853a2f5e2bf312584c1 (patch) | |
tree | ad6065ca95bf0aeb5a9a4601c3220b0c42b97a17 /tests/du | |
parent | d2e5e366a1d813e5ce2d03e250eb1ebe44473b63 (diff) | |
download | coreutils-b78c6b68f77d55b6aeb57853a2f5e2bf312584c1.tar.xz |
Run each Coreutils.pm-based test in its own subdirectory.
* tests/CuTmpdir.pm: New file.
* tests/Makefile.am (EXTRA_DIST): Add CuTmpdir.pm.
* tests/misc/od, tests/misc/base64, tests/misc/basename:
* tests/misc/cut, tests/misc/date, tests/misc/dirname:
* tests/misc/expand, tests/misc/fold, tests/misc/head-elide-tail:
* tests/misc/paste-no-nl, tests/misc/pr, tests/misc/sha224sum:
* tests/misc/sha256sum, tests/misc/sha384sum, tests/misc/sha512sum:
* tests/misc/sort-merge, tests/misc/stat-printf, tests/misc/test-diag:
* tests/misc/wc-files0-from, tests/misc/xstrtol:
* tests/dd/skip-seek, tests/dircolors/simple, tests/du/files0-from:
* tests/expr/basic, tests/factor/basic, tests/fmt/basic:
* tests/ls-2/tests, tests/md5sum/basic-1, tests/md5sum/newline-1:
* tests/seq/basic, tests/sha1sum/basic-1, tests/sha1sum/sample-vec:
* tests/sum/basic-1, tests/tsort/basic-1, tests/unexpand/basic-1:
* tests/mv/i-1, tests/rm/empty-name, tests/rm/unreadable: Use it.
* tests/misc/test-diag: Use "$ENV{abs_top_builddir}/src/test",
not "../../src/test", so it works when run from a subdirectory.
* tests/ls-2/tests: Create temp files and dirs from within the perl
script, so that they're removed, when run from a subdirectory.
Diffstat (limited to 'tests/du')
-rwxr-xr-x | tests/du/files0-from | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/du/files0-from b/tests/du/files0-from index 564cb2125..7f32f318f 100755 --- a/tests/du/files0-from +++ b/tests/du/files0-from @@ -28,7 +28,8 @@ $PERL -e 1 > /dev/null 2>&1 || { exit 77 } -exec $PERL -w -I$srcdir/.. -MCoreutils -- - <<\EOF +me=`echo $0|sed 's,.*/,,'` +exec $PERL -w -I$srcdir/.. -MCoreutils -M"CuTmpdir qw($me)" -- - <<\EOF #/ require 5.003; use strict; |