diff options
author | Jim Meyering <jim@meyering.net> | 2006-11-23 09:09:53 +0100 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-11-23 09:09:53 +0100 |
commit | 37012effc9177d4446e3a63f836df371b602a302 (patch) | |
tree | 62ec9de4af2ee2523e8dcd0c52e877d08e096d8c /tests | |
parent | a409011bba1acb33374a65d8563c0a2923cdd855 (diff) | |
download | coreutils-37012effc9177d4446e3a63f836df371b602a302.tar.xz |
* tests/du/deref-args: Use "printf %65536s x" to create a 64KB file,
rather than a pipeline that would sometimes evoke a diagnostic
like "seq: write error: Broken pipe".
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/du/deref-args | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/du/deref-args b/tests/du/deref-args index 1358325de..79225f5de 100755 --- a/tests/du/deref-args +++ b/tests/du/deref-args @@ -36,7 +36,7 @@ mkdir -p $tmp || framework_failure=1 cd $tmp || framework_failure=1 mkdir -p dir/a ln -s dir slink -seq --format=%100g 900 | head --bytes=64k > 64k +printf %65536s x > 64k ln -s 64k slink-to-64k if test $framework_failure = 1; then |