summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2006-01-04 16:07:11 +0000
committerJim Meyering <jim@meyering.net>2006-01-04 16:07:11 +0000
commit8f0572299a78a0d5a41f76ba561f91a081d30d6b (patch)
tree53dab9e5c4808b6480b957abda763579fad63e29 /tests
parent7b22d09fba8b1a3d2ba4ab485453afb53af009c7 (diff)
downloadcoreutils-8f0572299a78a0d5a41f76ba561f91a081d30d6b.tar.xz
change comment and temp file name: s/openat/fdopendir/
Diffstat (limited to 'tests')
-rwxr-xr-xtests/chmod/no-x6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/chmod/no-x b/tests/chmod/no-x
index 247b052c3..fbbb4890d 100755
--- a/tests/chmod/no-x
+++ b/tests/chmod/no-x
@@ -35,8 +35,8 @@ cat <<\EOF > exp
chmod: `d/no-x': Permission denied
EOF
-# With native openat, du uses a different code path.
-cat <<\EOF > exp-native-openat
+# 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
@@ -44,7 +44,7 @@ EOF
if cmp out exp >/dev/null 2>&1; then
:
else
- if cmp out exp-native-openat; then
+ if cmp out exp-native-fdopendir; then
:
else
fail=1