From 91dd425b4ab5f67b0107115fbe62531bb4846a08 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Wed, 18 Oct 2017 00:55:52 -0700 Subject: [PATCH] Add libsnark tests to full_test_suite.py --- qa/zcash/full_test_suite.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qa/zcash/full_test_suite.py b/qa/zcash/full_test_suite.py index e01845635..0bfc8a119 100755 --- a/qa/zcash/full_test_suite.py +++ b/qa/zcash/full_test_suite.py @@ -129,6 +129,7 @@ STAGES = [ 'no-dot-so', 'util-test', 'secp256k1', + 'libsnark', 'univalue', 'rpc', ] @@ -140,6 +141,7 @@ STAGE_COMMANDS = { 'no-dot-so': ensure_no_dot_so_in_depends, 'util-test': util_test, 'secp256k1': ['make', '-C', repofile('src/secp256k1'), 'check'], + 'libsnark': ['make', '-C', repofile('src'), 'libsnark-tests'], 'univalue': ['make', '-C', repofile('src/univalue'), 'check'], 'rpc': [repofile('qa/pull-tester/rpc-tests.sh')], }