diff options
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile index 059fcda..952defd 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -290,6 +290,11 @@ test-lz4-multiple: lz4 datagen $(CMP) tmp-tlm-concat1 tmp-tlm-concat2 # must be equivalent # compress multiple files, one of which is absent (must fail) ! $(LZ4) -f -m tmp-tlm-concat1 notHere tmp-tlm-concat2 # must fail : notHere not present + # test lz4-compressed file + $(LZ4) -tm tmp-tlm-concat1.lz4 + $(LZ4) -tm tmp-tlm-concat1.lz4 tmp-tlm-concat2.lz4 + # compress multiple lz4 files, one of which is absent (must fail) + ! $(LZ4) -tm tmp-tlm-concat1.lz4 notHere.lz4 tmp-tlm-concat2.lz4 @$(RM) tmp-tlm* test-lz4-multiple-legacy: lz4 datagen |