From: Jim Meyering Date: Wed, 4 Jan 2006 16:06:30 +0000 (+0000) Subject: Also allow a slightly different diagnostic -- the X-Git-Tag: v6.0~971 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=63028c863d3e5ceba685f988dbc45a4cdcf233ec;p=thirdparty%2Fcoreutils.git Also allow a slightly different diagnostic -- the one you get when using openat-enabled fts.c and du (coming soon). --- diff --git a/tests/chgrp/no-x b/tests/chgrp/no-x index d58fe8a1fe..5ccb39273e 100755 --- a/tests/chgrp/no-x +++ b/tests/chgrp/no-x @@ -39,7 +39,22 @@ cat <<\EOF > exp chgrp: `d/no-x': Permission denied EOF -cmp out exp || fail=1 +# With native fdopendir, du uses a different code path. +cat <<\EOF > exp-native-fdopendir +chmod: cannot access `d/no-x/y': Permission denied +chmod: fts_read failed: Permission denied +EOF + +if cmp out exp >/dev/null 2>&1; then + : +else + if cmp out exp-native-fdopendir; then + : + else + fail=1 + fi +fi + test $fail = 1 && diff out exp 2> /dev/null (exit $fail); exit $fail