I deleted libsnark a long time ago

This commit is contained in:
Duke Leto
2020-12-07 11:39:38 -05:00
parent dacc7360e5
commit d8ca403496
3 changed files with 1 additions and 49 deletions

View File

@@ -1,9 +1,7 @@
#!/usr/bin/env python2
# Copyright (c) 2019-2020 The Hush developers
# Released under the GPLv3
#
# Execute all of the automated tests related to Hush
#
import argparse
import os
@@ -22,10 +20,7 @@ REPOROOT = os.path.dirname(
def repofile(filename):
return os.path.join(REPOROOT, filename)
#
# Custom test runners
#
RE_RPATH_RUNPATH = re.compile('No RPATH.*No RUNPATH')
RE_FORTIFY_AVAILABLE = re.compile('FORTIFY_SOURCE support available.*Yes')
@@ -117,11 +112,7 @@ def util_test():
env={'PYTHONPATH': repofile('src/test'), 'srcdir': repofile('src')}
) == 0
#
# Tests
#
STAGES = [
'btest',
'gtest',
@@ -129,7 +120,6 @@ STAGES = [
'no-dot-so',
'util-test',
'secp256k1',
'libsnark',
'univalue',
'rpc',
]
@@ -141,16 +131,11 @@ 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')],
}
#
# Test driver
#
def run_stage(stage):
print('Running stage %s' % stage)
print('=' * (len(stage) + 14))