summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2016-11-14 16:51:28 (GMT)
committerYann Collet <cyan@fb.com>2016-11-14 16:51:28 (GMT)
commit5a5ebeec15d272b0b85aa2cef2a0da3dce920b80 (patch)
tree5cb9c681842992c699101acff06069ba90027b04 /tests
parent1b24cc115595f7cd2f8f5f6de0a9d44a70bdf827 (diff)
downloadlz4-5a5ebeec15d272b0b85aa2cef2a0da3dce920b80.zip
lz4-5a5ebeec15d272b0b85aa2cef2a0da3dce920b80.tar.gz
lz4-5a5ebeec15d272b0b85aa2cef2a0da3dce920b80.tar.bz2
clang and g++ tests restricted to native only on Travis CI Ubuntu v12 environment
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 4481392..a0ddc7c 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -42,7 +42,8 @@ TESTDIR := versionsTest
PYTHON ?= python3
CFLAGS ?= -O3 # can select custom flags. For example : CFLAGS="-O2 -g" make
-CFLAGS += -Wall -Wextra -Wundef -Wcast-qual -Wcast-align -Wshadow -Wswitch-enum -Wdeclaration-after-statement -Wstrict-prototypes
+CFLAGS += -Wall -Wextra -Wundef -Wcast-qual -Wcast-align -Wshadow -Wswitch-enum \
+ -Wdeclaration-after-statement -Wstrict-prototypes
CFLAGS += $(MOREFLAGS)
CPPFLAGS:= -I$(LZ4DIR) -DXXH_NAMESPACE=LZ4_
FLAGS := $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)
@@ -62,13 +63,13 @@ FUZZER_TIME := -T3mn
NB_LOOPS ?= -i1
-default: bins
+default: native
m32: fullbench32 fuzzer32 frametest32
-bins: fullbench fuzzer frametest datagen fasttest
+native: fullbench fuzzer frametest datagen fasttest
-all: bins m32
+all: native m32
lz4: