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/chown/basic | |
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/chown/basic')
-rwxr-xr-x | tests/chown/basic | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/chown/basic b/tests/chown/basic index db270ea94..908ef119c 100755 --- a/tests/chown/basic +++ b/tests/chown/basic @@ -22,7 +22,7 @@ touch f || framework_failure=1 if test $framework_failure = 1; then echo 'failure in testing framework' 1>&2 - (exit 1); exit + (exit 1); exit 1 fi fail=0 @@ -36,4 +36,4 @@ chown --from=0:1 2:3 f || fail=1 # And now they should be 2 and 3 respectively. set _ `ls -n f`; shift; test "$3:$4" = 2:3 || fail=1 -(exit $fail); exit +(exit $fail); exit $fail |