summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2020-09-17 17:29:31 (GMT)
committerYann Collet <cyan@fb.com>2020-09-17 17:29:31 (GMT)
commitb4a64e0eac8f39415b2fa3573561f9325f7296c1 (patch)
tree1a1ff6516f2a8156e50115c271bb8aacf63d4806 /tests
parent4f33a5935b36783abb930252e4da487625817ee2 (diff)
downloadlz4-b4a64e0eac8f39415b2fa3573561f9325f7296c1.zip
lz4-b4a64e0eac8f39415b2fa3573561f9325f7296c1.tar.gz
lz4-b4a64e0eac8f39415b2fa3573561f9325f7296c1.tar.bz2
fix ubsan test
which now fails with a clear error as intended (not just print a status and move on). should be reproduced on travisCI
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 5a6ec59..43c9651 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -35,7 +35,7 @@ PYTHON ?= python3
DEBUGLEVEL?= 1
DEBUGFLAGS = -g -DLZ4_DEBUG=$(DEBUGLEVEL)
-CFLAGS ?= -O3 # can select custom optimization flags. For example : CFLAGS=-O2 make
+CFLAGS ?= -O3 # can select custom optimization flags. Example : CFLAGS=-O2 make
CFLAGS += -Wall -Wextra -Wundef -Wcast-qual -Wcast-align -Wshadow \
-Wswitch-enum -Wdeclaration-after-statement -Wstrict-prototypes \
-Wpointer-arith -Wstrict-aliasing=1