diff options
author | Yann Collet <cyan@fb.com> | 2019-05-16 16:46:16 -0700 |
---|---|---|
committer | Yann Collet <cyan@fb.com> | 2019-05-16 16:46:16 -0700 |
commit | e2527ad7254b816e14f2bd8abfbe3e3c8d6034db (patch) | |
tree | 0a9a7c2e30610a19430c76cdaef1104678a4eae2 /tests/Makefile | |
parent | a7151324af18216119bf3489f159bef8b74323f2 (diff) | |
download | lz4-e2527ad7254b816e14f2bd8abfbe3e3c8d6034db.tar.gz lz4-e2527ad7254b816e14f2bd8abfbe3e3c8d6034db.tar.bz2 lz4-e2527ad7254b816e14f2bd8abfbe3e3c8d6034db.zip |
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/Makefile | 4 |
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 |