aboutsummaryrefslogtreecommitdiffstats
path: root/test.py
diff options
context:
space:
mode:
authorDimitry <dimitry@ethereum.org>2018-09-26 19:59:17 +0800
committerDimitry <dimitry@ethereum.org>2018-09-28 04:37:33 +0800
commit1d25604dd0f8a4f9337d32c22bac9c6bf5cc115e (patch)
tree1e2f11b9cfcf5f9731413d74133d8c3c1e20c907 /test.py
parentfafb8a88abd431eedd85167445ccafbc095eed7a (diff)
downloaddexon-tests-1d25604dd0f8a4f9337d32c22bac9c6bf5cc115e.tar.gz
dexon-tests-1d25604dd0f8a4f9337d32c22bac9c6bf5cc115e.tar.zst
dexon-tests-1d25604dd0f8a4f9337d32c22bac9c6bf5cc115e.zip
support hash of the .yml test
Diffstat (limited to 'test.py')
-rwxr-xr-xtest.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/test.py b/test.py
index ff4bbdd38..03cc9f942 100755
--- a/test.py
+++ b/test.py
@@ -133,7 +133,12 @@ def validateTestFile(testFile):
def hashFile(fname):
with open(fname ,"rb") as f:
k = sha3.keccak_256()
- s = json.dumps(json.load(f), separators=(',', ':'))
+ if fname.endswith(".json"):
+ s = json.dumps(json.load(f), separators=(',', ':'))
+ elif fname.endswith(".yml"):
+ s = json.dumps(yaml.load(f), sort_keys=True, separators=(',', ':'))
+ else:
+ _die("Do not know how to hash:", fname)
k.update(s.encode('utf-8'))
return k.hexdigest()