diff options
author | Jim Meyering <jim@meyering.net> | 2003-08-09 11:38:57 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-08-09 11:38:57 +0000 |
commit | 8b56ea9ff53dc44a21db79a42f6d54501f8f1624 (patch) | |
tree | 2b9cbe12aef30b135789b703e5f2ab68a31c5bcf /tests | |
parent | e1bb200a92a4c2f7357b0716cdc43287ff9d62d7 (diff) | |
download | coreutils-8b56ea9ff53dc44a21db79a42f6d54501f8f1624.tar.xz |
Ensure that a/b/F has at least 65 bytes too.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/du/basic | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/du/basic b/tests/du/basic index ab651f8fe..e2ef5cd1c 100755 --- a/tests/du/basic +++ b/tests/du/basic @@ -19,11 +19,11 @@ framework_failure=0 mkdir -p $tmp || framework_failure=1 cd $tmp || framework_failure=1 mkdir -p a/b d d/sub || framework_failure=1 -printf 'make-sure-the-file-is-non-empty\n' > a/b/F || framework_failure=1 # Ensure that these files contain more than 64 bytes, so that we don't # immediately disqualify file systems (e.g., NetApp) on which smaller # files take up zero disk blocks. +printf '%*s' 65 make-sure-the-file-is-non-empty > a/b/F || framework_failure=1 seq --format=%100g 1 90 | head --bytes=4k > d/1 cp d/1 d/sub/2 |