diff options
author | Jim Meyering <jim@meyering.net> | 2005-01-14 10:39:05 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-01-14 10:39:05 +0000 |
commit | 6ad556a63cf7ec5158a2e93adacd5cc43293f3be (patch) | |
tree | cbef034cb1e559d85697e20e71b3b13091f1a8cd /tests/chown | |
parent | bf9e735bbdfc5a4ade06b9a9d2a8daba688ea191 (diff) | |
download | coreutils-6ad556a63cf7ec5158a2e93adacd5cc43293f3be.tar.xz |
(id_gn): Exit 77, not 1, for a test-framework
failure, so that doesn't cause `make check' to stop. Nelson Beebe
reported that this test would fail with this diagnostic
`cannot find name for group ID 10' on one of his systems.
Diffstat (limited to 'tests/chown')
-rwxr-xr-x | tests/chown/separator | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/chown/separator b/tests/chown/separator index fec1b5827..45d5cdc3b 100755 --- a/tests/chown/separator +++ b/tests/chown/separator @@ -30,7 +30,7 @@ test -n "$id_gn" || framework_failure=1 if test $framework_failure = 1; then echo "$0: failure in testing framework" 1>&2 - (exit 1); exit 1 + (exit 77); exit 77 fi fail=0 |