diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2017-04-02 10:56:18 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2017-04-02 10:56:18 +0800 |
commit | 6e2296d78de9f3d29d4370b887e9fa92c251817f (patch) | |
tree | 82231e0ca7570d79a879079b7c1cead31e01e857 /Makefile | |
parent | cd6a2da083dfe28a814a915bf269c01279b4ac92 (diff) | |
download | dexon-bls-6e2296d78de9f3d29d4370b887e9fa92c251817f.tar dexon-bls-6e2296d78de9f3d29d4370b887e9fa92c251817f.tar.gz dexon-bls-6e2296d78de9f3d29d4370b887e9fa92c251817f.tar.bz2 dexon-bls-6e2296d78de9f3d29d4370b887e9fa92c251817f.tar.lz dexon-bls-6e2296d78de9f3d29d4370b887e9fa92c251817f.tar.xz dexon-bls-6e2296d78de9f3d29d4370b887e9fa92c251817f.tar.zst dexon-bls-6e2296d78de9f3d29d4370b887e9fa92c251817f.zip |
use testing
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -67,8 +67,8 @@ test: $(TEST_EXE) @sh -ec 'for i in $(TEST_EXE); do $$i|grep "ctest:name"; done' > result.txt @grep -v "ng=0, exception=0" result.txt; if [ $$? -eq 1 ]; then echo "all unit tests succeed"; else exit 1; fi -run_go: go/main.go $(BLS_LIB) $(BLS_IF_LIB) - cd go && go run -tags $(GO_TAG) main.go +run_go: go/main_test.go $(BLS_LIB) $(BLS_IF_LIB) + cd go && go test -tags $(GO_TAG) -v . clean: $(RM) $(BLS_LIB) $(OBJ_DIR)/* $(EXE_DIR)/*.exe $(GEN_EXE) $(ASM_SRC) $(ASM_OBJ) $(LIB_OBJ) $(LLVM_SRC) $(BLS_IF_LIB) |