diff options
author | Jim Meyering <jim@meyering.net> | 2006-01-04 16:06:59 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-01-04 16:06:59 +0000 |
commit | 7b22d09fba8b1a3d2ba4ab485453afb53af009c7 (patch) | |
tree | 48e56543da5bbf5c342e7107f319689a394aeb01 /tests/du | |
parent | 63028c863d3e5ceba685f988dbc45a4cdcf233ec (diff) | |
download | coreutils-7b22d09fba8b1a3d2ba4ab485453afb53af009c7.tar.xz |
change comments and temp file name: s/openat/fdopendir/
Diffstat (limited to 'tests/du')
-rwxr-xr-x | tests/du/no-x | 6 |
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 |