From cf5813a1b48744e2029293df15deb200881df927 Mon Sep 17 00:00:00 2001 From: Mark Borgerding Date: Sun, 19 Apr 2020 10:06:56 -0400 Subject: [PATCH] added test for simd crash to "make testall" and thus travis CI --- Makefile | 1 + test/Makefile | 3 +++ 2 files changed, 4 insertions(+) diff --git a/Makefile b/Makefile index bcc44fa..168304d 100644 --- a/Makefile +++ b/Makefile @@ -37,6 +37,7 @@ testall: make -C test DATATYPE=int16_t CFLAGADD="$(CFLAGADD)" test make -C test DATATYPE=float CFLAGADD="$(CFLAGADD)" test make -C test DATATYPE=double CFLAGADD="$(CFLAGADD)" test + make -C test testsse echo "all tests passed" tarball: clean diff --git a/test/Makefile b/test/Makefile index 79bd440..e4ef001 100644 --- a/test/Makefile +++ b/test/Makefile @@ -67,6 +67,9 @@ tools: test_simd: test_simd.c $(SRCFILES) $(CC) -o $@ -g $(CFLAGS) -DUSE_SIMD=1 -msse $+ -lm +testsse: test_simd + ./test_simd + $(SELFTEST): $(SELFTESTSRC) $(SRCFILES) $(CC) -o $@ $(CFLAGS) $(TYPEFLAGS) $+ -lm