aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <herumi@nifty.com>2018-11-06 16:24:04 +0800
committerMITSUNARI Shigeo <herumi@nifty.com>2018-11-06 16:24:04 +0800
commitda48823cda0905fcf21396c5831b840106cb3a8c (patch)
tree672507ccadbe87f6bd05b41aa197d63f6841a348 /Makefile
parent5f2112059cb6326f03e1ac5585b1df1bb6fdc55f (diff)
downloaddexon-bls-da48823cda0905fcf21396c5831b840106cb3a8c.tar
dexon-bls-da48823cda0905fcf21396c5831b840106cb3a8c.tar.gz
dexon-bls-da48823cda0905fcf21396c5831b840106cb3a8c.tar.bz2
dexon-bls-da48823cda0905fcf21396c5831b840106cb3a8c.tar.lz
dexon-bls-da48823cda0905fcf21396c5831b840106cb3a8c.tar.xz
dexon-bls-da48823cda0905fcf21396c5831b840106cb3a8c.tar.zst
dexon-bls-da48823cda0905fcf21396c5831b840106cb3a8c.zip
update test
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 8076813..8b88a72 100644
--- a/Makefile
+++ b/Makefile
@@ -84,6 +84,10 @@ SAMPLE_EXE=$(addprefix $(EXE_DIR)/,$(SAMPLE_SRC:.cpp=.exe))
sample: $(SAMPLE_EXE)
TEST_EXE=$(addprefix $(EXE_DIR)/,$(TEST_SRC:.cpp=.exe))
+test_ci: $(TEST_EXE)
+ @sh -ec 'for i in $(TEST_EXE); do echo $$i; env LSAN_OPTIONS=verbosity=1:log_threads=1 $$i; done'
+ $(MAKE) sample_test
+
test: $(TEST_EXE)
@echo test $(TEST_EXE)
@sh -ec 'for i in $(TEST_EXE); do $$i|grep "ctest:name"; done' > result.txt