aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakayuki Matsuoka <t-mat@users.noreply.github.com>2022-08-08 18:04:13 +0900
committerTakayuki Matsuoka <t-mat@users.noreply.github.com>2022-08-08 18:04:13 +0900
commitaa2699707b575d55dbc22e96e81cad6357cd8526 (patch)
treeab0c8d878bc30b1c007b776e5c0f3efae1676981
parent79b40d61b87531e76c70871e60166811a9e57563 (diff)
downloadlz4-aa2699707b575d55dbc22e96e81cad6357cd8526.tar.gz
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.
-rw-r--r--tests/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Makefile b/tests/Makefile
index dc630417..93a5581c 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