diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-09-08 16:02:41 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-09-09 08:34:00 +0200 |
commit | 07286ad05fc2a60a485f542340aa04ceeaa3748c (patch) | |
tree | df47d74453aeb4b10b9746cc396db3d883f81dd0 /tests | |
parent | 98c4038df36fb73601c58ccd885d1c2d3703cf6e (diff) |
Implement lz4::{istream,ostream}
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lz4/testscript | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/lz4/testscript b/tests/lz4/testscript index 1806c94..0cd5cba 100644 --- a/tests/lz4/testscript +++ b/tests/lz4/testscript @@ -2,7 +2,8 @@ # license : MIT; see accompanying LICENSE file +touch zero -+echo 'The quick brown fox jumps over the lazy dog.' >=small ++cat <:'1' >=one ++cat <'The quick brown fox jumps over the lazy dog.' >=small +cat <<EOI >=1kb The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox @@ -29,6 +30,12 @@ $* -c ../zero zero.lz4 &zero.lz4; $* -d zero.lz4 zero &zero; diff ../zero zero +: rt-one +: +$* -c ../one one.lz4 &one.lz4; +$* -d one.lz4 one &one; +diff ../one one + : rt-small : $* -c ../small small.lz4 &small.lz4; |