summaryrefslogtreecommitdiff
path: root/tests/du/no-x
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2006-01-04 16:06:59 +0000
committerJim Meyering <jim@meyering.net>2006-01-04 16:06:59 +0000
commit7b22d09fba8b1a3d2ba4ab485453afb53af009c7 (patch)
tree48e56543da5bbf5c342e7107f319689a394aeb01 /tests/du/no-x
parent63028c863d3e5ceba685f988dbc45a4cdcf233ec (diff)
downloadcoreutils-7b22d09fba8b1a3d2ba4ab485453afb53af009c7.tar.xz
change comments and temp file name: s/openat/fdopendir/
Diffstat (limited to 'tests/du/no-x')
-rwxr-xr-xtests/du/no-x6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/du/no-x b/tests/du/no-x
index e1d400ae6..7cd2f182b 100755
--- a/tests/du/no-x
+++ b/tests/du/no-x
@@ -35,8 +35,8 @@ cat <<\EOF > exp
du: `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
du: cannot access `d/no-x/y': Permission denied
du: 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