From 63028c863d3e5ceba685f988dbc45a4cdcf233ec Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 4 Jan 2006 16:06:30 +0000 Subject: Also allow a slightly different diagnostic -- the one you get when using openat-enabled fts.c and du (coming soon). --- tests/chgrp/no-x | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'tests/chgrp/no-x') diff --git a/tests/chgrp/no-x b/tests/chgrp/no-x index d58fe8a1f..5ccb39273 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 -- cgit v1.2.3-54-g00ecf