Isolate test cases from all tests and store under hash.

This commit is contained in:
chriseth 2017-03-22 20:19:20 +01:00
parent b28aefe28c
commit b18aea315d
2 changed files with 13 additions and 13 deletions

View File

@ -8,10 +8,12 @@
import sys
import re
import os
import hashlib
from os.path import join
def extract_cases(path):
lines = open(path).read().splitlines()
lines = open(path, 'rb').read().splitlines()
inside = False
delimiter = ''
@ -33,16 +35,14 @@ def extract_cases(path):
return tests
def write_cases(tests, start=0):
for i, test in enumerate(tests, start=start):
open('test%d.sol' % i, 'w').write(test)
def write_cases(tests):
for test in tests:
open('test_%s.sol' % hashlib.sha256(test).hexdigest(), 'wb').write(test)
if __name__ == '__main__':
files = sys.argv[1:]
path = sys.argv[1]
i = 0
for path in files:
cases = extract_cases(path)
write_cases(cases, start=i)
i += len(cases)
for root, dir, files in os.walk(path):
for f in files:
cases = extract_cases(join(root, f))
write_cases(cases)

View File

@ -73,7 +73,7 @@ TMPDIR=$(mktemp -d)
cd "$REPO_ROOT"
REPO_ROOT=$(pwd) # make it absolute
cd "$TMPDIR"
"$REPO_ROOT"/scripts/isolate_tests.py "$REPO_ROOT"/test/contracts/* "$REPO_ROOT"/test/libsolidity/*EndToEnd*
"$REPO_ROOT"/scripts/isolate_tests.py "$REPO_ROOT"/test/
for f in *.sol
do
"$REPO_ROOT"/build/test/solfuzzer < "$f"