summaryrefslogtreecommitdiffstats
path: root/tests/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 93a5581..62e364a 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -312,8 +312,14 @@ test-lz4-multiple: lz4 datagen
# compress multiple files, one of which is absent (must fail)
! $(LZ4) -f -m $(FPREFIX)-concat1 notHere $(FPREFIX)-concat2 # must fail : notHere not present
# test lz4-compressed file
+ $(RM) $(FPREFIX)-concat1 $(FPREFIX)-concat2
$(LZ4) -tm $(FPREFIX)-concat1.lz4
+ # ensure the test doesn't create artifact
+ test ! -f $(FPREFIX)-concat1 # must not create file artefact
+ # test multiple lz4-compressed file
$(LZ4) -tm $(FPREFIX)-concat1.lz4 $(FPREFIX)-concat2.lz4
+ test ! -f $(FPREFIX)-concat1 # must not create file artefact
+ test ! -f $(FPREFIX)-concat2 # must not create file artefact
# test multiple lz4 files, one of which is absent (must fail)
! $(LZ4) -tm $(FPREFIX)-concat1.lz4 notHere.lz4 $(FPREFIX)-concat2.lz4
@$(RM) $(FPREFIX)*