diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-02-03 19:56:11 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-02-03 23:57:33 +0300 |
commit | 2c1aff8bf09a50189c3d0b2ff86ab057ca009749 (patch) | |
tree | df20195c6833c4bb9eec8521c0f055393e65543f /tests/test/script/builtin/sed.test | |
parent | 044e2e1c1460fb060f677a366144b98905522754 (diff) |
Fix runner output in verbose (-v, -V) modes
Diffstat (limited to 'tests/test/script/builtin/sed.test')
-rw-r--r-- | tests/test/script/builtin/sed.test | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/tests/test/script/builtin/sed.test b/tests/test/script/builtin/sed.test index ef99539..c0a8172 100644 --- a/tests/test/script/builtin/sed.test +++ b/tests/test/script/builtin/sed.test @@ -301,12 +301,14 @@ : big : -: Sed a big file (about 3MB) to test that the builtin is asynchronous. +: Sed a big file (about 100K) to test that the builtin is asynchronous. : { - s="------------------------------------------------------------------------" - s="$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s" - s="$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s" - s="$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s" - $c <"cat <'$s' | sed -e 's/^x//' >'$s'" && $b + $c <<EOI && $b + s="--------------------------------" + s="$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s" + s="$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s" + s="$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s$s" + cat <"$s" | sed -e 's/^x//' | cat >"$s" + EOI } |