Add script to extract test cases.

This commit is contained in:
chriseth 2016-09-30 13:09:45 +02:00
parent c06ba01136
commit a5810e3793

23
scripts/isolateTests.py Executable file
View File

@ -0,0 +1,23 @@
#!/usr/bin/python
#
# This script reads C++ source files and writes all
# multi-line strings into individual files.
# This can be used to extract the Solidity test cases
# into files for e.g. fuzz testing.
import sys
lines = sys.stdin.read().split('\n')
inside = False
tests = []
for l in lines:
if inside:
if l.strip().endswith(')";'):
inside = False
else:
tests[-1] += l + '\n'
else:
if l.strip().endswith('R"('):
inside = True
tests += ['']
for i in range(len(tests)):
open('test%d.sol' % i, 'w').write(tests[i])