diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2017-03-09 21:31:44 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2017-03-09 21:31:44 +0800 |
commit | 26221606e9c96887acd8a38532e95a5aea67de27 (patch) | |
tree | e294d1b878ef9ef4d9b149f67824c19bfa6783ef | |
parent | 8b7b9e8bb64b28decb52450061ee3397e6ce0482 (diff) | |
download | tangerine-mcl-26221606e9c96887acd8a38532e95a5aea67de27.tar.gz tangerine-mcl-26221606e9c96887acd8a38532e95a5aea67de27.tar.zst tangerine-mcl-26221606e9c96887acd8a38532e95a5aea67de27.zip |
enable bn256_test.cpp for travis
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | Makefile | 5 |
2 files changed, 2 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 0f4535f..4762e7e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,5 +11,5 @@ script: - git clone https://github.com/herumi/xbyak.git - git clone https://github.com/herumi/mcl.git - cd mcl - - make test IGNORE_BN256_TEST=1 DEBUG=1 + - make test DEBUG=1 @@ -3,10 +3,7 @@ LIB_DIR=lib OBJ_DIR=obj EXE_DIR=bin SRC_SRC=fp.cpp -TEST_SRC=fp_test.cpp ec_test.cpp fp_util_test.cpp window_method_test.cpp elgamal_test.cpp fp_tower_test.cpp gmp_test.cpp bn_test.cpp -ifneq ($(IGNORE_BN256_TEST),1) # QQQ : travis-ci fails to build this test - TEST_SRC+=bn256_test.cpp -endif +TEST_SRC=fp_test.cpp ec_test.cpp fp_util_test.cpp window_method_test.cpp elgamal_test.cpp fp_tower_test.cpp gmp_test.cpp bn_test.cpp bn256_test.cpp ifeq ($(CPU),x86-64) MCL_USE_XBYAK?=1 TEST_SRC+=mont_fp_test.cpp sq_test.cpp |