diff options
author | Jim Meyering <jim@meyering.net> | 2003-02-26 17:51:34 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-02-26 17:51:34 +0000 |
commit | 0ac5f83cf97a66f45005782a2179b214651f7d2b (patch) | |
tree | 072b10d7a867a52e9a28cacc7254658a78b301d4 /tests | |
parent | 486d1c702442121babe51fd1e49e42240ef9bdbb (diff) | |
download | coreutils-0ac5f83cf97a66f45005782a2179b214651f7d2b.tar.xz |
Don't test du's -b option here. Directory byte
counts are smaller (512 rather than 4096) on at least OSF/1 5.1
and IBM AIX 4.2.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/du/basic | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/du/basic b/tests/du/basic index c26226941..13aebde7c 100755 --- a/tests/du/basic +++ b/tests/du/basic @@ -37,8 +37,6 @@ echo === >> out du -aS a >> out || fail=1 echo === >> out du -s a >> out || fail=1 -echo === >> out -du -abS a >> out || fail=1 cat <<\EOF > exp 4 a/b/c 8 a/b @@ -49,10 +47,6 @@ cat <<\EOF > exp 4 a === 12 a -=== -32 a/b/c -4096 a/b -4096 a EOF cmp out exp || fail=1 |