summaryrefslogtreecommitdiffstats
path: root/tests/Makefile
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2019-05-16 23:46:16 (GMT)
committerYann Collet <cyan@fb.com>2019-05-16 23:46:16 (GMT)
commite2527ad7254b816e14f2bd8abfbe3e3c8d6034db (patch)
tree0a9a7c2e30610a19430c76cdaef1104678a4eae2 /tests/Makefile
parenta7151324af18216119bf3489f159bef8b74323f2 (diff)
downloadlz4-e2527ad7254b816e14f2bd8abfbe3e3c8d6034db.zip
lz4-e2527ad7254b816e14f2bd8abfbe3e3c8d6034db.tar.gz
lz4-e2527ad7254b816e14f2bd8abfbe3e3c8d6034db.tar.bz2
updated tests
- only play listTest with `make test`, not `make all` which is limited to build - update `clangtest`, so that it's possible to disable O3 optimization, for faster processing
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Makefile b/tests/Makefile
index dbb7bd5..a38031a 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -55,7 +55,7 @@ NB_LOOPS ?= -i1
default: all
-all: fullbench fuzzer frametest roundTripTest datagen checkFrame listTest
+all: fullbench fuzzer frametest roundTripTest datagen checkFrame
all32: CFLAGS+=-m32
all32: all
@@ -153,7 +153,7 @@ list:
@$(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | sort | egrep -v -e '^[^[:alnum:]]' -e '^$@$$' | xargs
.PHONY: test
-test: test-lz4 test-lz4c test-frametest test-fullbench test-fuzzer test-install test-amalgamation
+test: test-lz4 test-lz4c test-frametest test-fullbench test-fuzzer test-install test-amalgamation listTest
.PHONY: test32
test32: CFLAGS+=-m32