Merge pull request #4916 from ethereum/isolate_tests_filenames

Include origin filename in the filenames generated by isolate_tests.py
This commit is contained in:
chriseth 2018-09-17 14:05:41 +02:00 committed by GitHub
commit f4ed315197
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,9 +56,10 @@ def extract_docs_cases(path):
if re.search(r'^ [ ]*(pragma solidity|contract |library |interface )', test, re.MULTILINE)
]
def write_cases(tests):
def write_cases(f, tests):
cleaned_filename = f.replace(".","_").replace("-","_").replace(" ","_").lower()
for test in tests:
open('test_%s.sol' % hashlib.sha256(test).hexdigest(), 'wb').write(test)
open('test_%s_%s.sol' % (hashlib.sha256(test).hexdigest(), cleaned_filename), 'wb').write(test)
def extract_and_write(f, path):
@ -69,7 +70,7 @@ def extract_and_write(f, path):
cases = [open(path, 'r').read()]
else:
cases = extract_test_cases(path)
write_cases(cases)
write_cases(f, cases)
if __name__ == '__main__':
path = sys.argv[1]