diff options
author | Takayuki Matsuoka <t-mat@users.noreply.github.com> | 2022-08-08 09:04:13 (GMT) |
---|---|---|
committer | Takayuki Matsuoka <t-mat@users.noreply.github.com> | 2022-08-08 09:04:13 (GMT) |
commit | aa2699707b575d55dbc22e96e81cad6357cd8526 (patch) | |
tree | ab0c8d878bc30b1c007b776e5c0f3efae1676981 /tests | |
parent | 79b40d61b87531e76c70871e60166811a9e57563 (diff) | |
download | lz4-aa2699707b575d55dbc22e96e81cad6357cd8526.zip lz4-aa2699707b575d55dbc22e96e81cad6357cd8526.tar.gz lz4-aa2699707b575d55dbc22e96e81cad6357cd8526.tar.bz2 |
Remove test-freestanding from tests/Makefile "all" and "test"
Since test-freestanding is able to be compiled and executed
in specific environment, we should not run it in our standard test.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Makefile b/tests/Makefile index dc63041..93a5581 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -56,7 +56,7 @@ NB_LOOPS ?= -i1 .PHONY: default default: all -all: fullbench fuzzer frametest roundTripTest datagen checkFrame decompress-partial freestanding +all: fullbench fuzzer frametest roundTripTest datagen checkFrame decompress-partial all32: CFLAGS+=-m32 all32: all @@ -182,7 +182,7 @@ list: check: test-lz4-essentials .PHONY: test -test: test-lz4 test-lz4c test-frametest test-fullbench test-fuzzer test-amalgamation listTest test-decompress-partial test-freestanding +test: test-lz4 test-lz4c test-frametest test-fullbench test-fuzzer test-amalgamation listTest test-decompress-partial .PHONY: test32 test32: CFLAGS+=-m32 |