]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Avoid a test failure due to now-parallelized tests.
authorJim Meyering <jim@meyering.net>
Fri, 21 Sep 2007 06:30:26 +0000 (08:30 +0200)
committerJim Meyering <jim@meyering.net>
Fri, 21 Sep 2007 06:30:55 +0000 (08:30 +0200)
* tests/du/two-args: Run "du .." from a sub-directory one level deeper.

ChangeLog
tests/du/two-args

index e1f850e021d59c0820065a4293c99027805e4d09..32194b62251ff7f861804d5f7e722c58e2e1d27b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-09-21  Jim Meyering  <jim@meyering.net>
+
+       Avoid test failure due to now-parallelized tests.
+       * tests/du/two-args: Run "du .." from a sub-directory one level deeper.
+
 2007-09-16  Jim Meyering  <jim@meyering.net>
 
        * tests/misc/tac-continue: Arrange to remove a temporary file.
index a9a3e75b0432b616b05dc2c4f86d5bf7c5c4bf32..9d9330e950a01ff1f9e15239c712308e1d554dd2 100755 (executable)
@@ -24,6 +24,12 @@ fi
 
 . $srcdir/../test-lib.sh
 
+# Run this test from a sub-directory one level deeper than normal,
+# so that the "du .." below doesn't traverse sibling directories
+# that may be inaccessible due concurrently-running tests.
+mkdir sub || framework_failure
+cd sub || framework_failure
+
 t=t
 mkdir -p $t/1 $t/2 || framework_failure