diff options
author | Jim Meyering <meyering@fb.com> | 2016-11-08 19:57:41 -0600 |
---|---|---|
committer | Jim Meyering <meyering@fb.com> | 2016-11-13 08:26:19 -0800 |
commit | 22063c8c083d2d8130efb76482e45fa1976a595a (patch) | |
tree | 18645c547557304f18702e3c07b83fb3793ea135 /tests/du/move-dir-while-traversing.sh | |
parent | 4d45722d1160a04e4d26fd812da4e0140ad3550c (diff) | |
download | coreutils-22063c8c083d2d8130efb76482e45fa1976a595a.tar.xz |
tests: use "returns_" rather than explicit comparison with "$?"
* tests/chmod/no-x.sh: Likewise.
* tests/cp/no-deref-link1.sh: Likewise.
* tests/cp/no-deref-link2.sh: Likewise.
* tests/cp/no-deref-link3.sh: Likewise.
* tests/du/move-dir-while-traversing.sh: Likewise.
* tests/ls/infloop.sh: Likewise.
* tests/ls/stat-failed.sh: Likewise.
* tests/ls/time-style-diag.sh: Likewise.
* tests/misc/chroot-fail.sh: Likewise.
* tests/misc/env-null.sh: Likewise.
* tests/misc/env.sh: Likewise.
* tests/misc/nice-fail.sh: Likewise.
* tests/misc/printenv.sh: Likewise.
* tests/misc/timeout.sh: Likewise.
* tests/tail-2/follow-name.sh: Likewise.
Diffstat (limited to 'tests/du/move-dir-while-traversing.sh')
-rwxr-xr-x | tests/du/move-dir-while-traversing.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/du/move-dir-while-traversing.sh b/tests/du/move-dir-while-traversing.sh index e80e94cb7..218f0c463 100755 --- a/tests/du/move-dir-while-traversing.sh +++ b/tests/du/move-dir-while-traversing.sh @@ -88,9 +88,8 @@ retry_delay_ nonempty .1 5 || fail=1 # and when it triggers, moves the parent, $t/3/a, up one level # so it's directly under $t. -du -a $t d2 2> err # Before coreutils-8.10, du would abort. -test $? = 1 || fail=1 +returns_ 1 du -a $t d2 2> err || fail=1 # check for the new diagnostic printf "du: fts_read failed: $t/3/a/b: No such file or directory\n" > exp \ |