Also allow a slightly different diagnostic -- the
authorJim Meyering <jim@meyering.net>
Wed, 4 Jan 2006 16:06:30 +0000 (16:06 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 4 Jan 2006 16:06:30 +0000 (16:06 +0000)
one you get when using openat-enabled fts.c and du (coming soon).

tests/chgrp/no-x

index d58fe8a..5ccb392 100755 (executable)
@@ -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