summaryrefslogtreecommitdiffstats
path: root/programs/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'programs/Makefile')
-rw-r--r--programs/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/programs/Makefile b/programs/Makefile
index 910516f..b0e30d8 100644
--- a/programs/Makefile
+++ b/programs/Makefile
@@ -207,7 +207,13 @@ test-lz4-multiple: lz4 datagen
./lz4 -f -m tmp1 notHere tmp2; echo $$?
@rm tmp*
-test-lz4: lz4 datagen test-lz4-multiple test-lz4-sparse test-lz4-contentSize test-lz4-frame-concatenation
+# test-lz4-multiple test-lz4-sparse test-lz4-contentSize test-lz4-frame-concatenation
+test-lz4: lz4 datagen
+ @echo ---- test erroneous data ----
+ ./datagen -s1 | ./lz4 -vf - tmp
+ tmpSize= $(stat -c%s "tmp")
+ echo "Size of tmp = $tmpSize bytes."
+ rm tmp*
@echo ---- test lz4 basic compression/decompression ----
./datagen -g0 | ./lz4 -v | ./lz4 -t
./datagen -g16KB | ./lz4 -9 | ./lz4 -t