diff options
author | Jim Meyering <jim@meyering.net> | 2004-06-23 15:07:00 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2004-06-23 15:07:00 +0000 |
commit | 112efa81f24ead69a3a9b6ae76f601911535352c (patch) | |
tree | dc10a3855c2b2a118ebf08a2df2710377dcff8d7 /tests/du/slink | |
parent | 11f05299f96e39d58356f83d09811487235c5f4c (diff) | |
download | coreutils-112efa81f24ead69a3a9b6ae76f601911535352c.tar.xz |
Replace all occurrences of `(exit N); exit' with
`(exit N); exit N'. Otherwise, those many tests could exit with
improper exit status when exiting via e.g., a trapped interrupt.
Thanks to a report from Bob Proulx.
Diffstat (limited to 'tests/du/slink')
-rwxr-xr-x | tests/du/slink | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/du/slink b/tests/du/slink index 787f811ab..4625aa053 100755 --- a/tests/du/slink +++ b/tests/du/slink @@ -23,7 +23,7 @@ if test -s tmp; then : # Ok. else echo "$0: skipping this test, since \`.' is on a non-local file system" 1>&2 - (exit 77); exit + (exit 77); exit 77 fi df --type=xfs . | tail -n +2 > tmp @@ -31,7 +31,7 @@ if test -s tmp; then # At least on Irix-6.5.19, when using an xfs file system, # each created symlink (name lengths up to 255) would have a size of `0'. echo "$0: skipping this test, since \`.' is on an XFS file system" 1>&2 - (exit 77); exit + (exit 77); exit 77 fi if test $framework_failure = 1; then |