aboutsummaryrefslogtreecommitdiffstats
path: root/test.py
diff options
context:
space:
mode:
authorEverett Hildenbrandt <hildenb2@illinois.edu>2018-06-01 13:57:37 +0800
committerEverett Hildenbrandt <hildenb2@illinois.edu>2018-06-02 03:18:42 +0800
commit376d2f6a4c9257b727265828c9abc14a4a04740c (patch)
tree289b10138a0e28e464219dacfd957fdc1204dd6a /test.py
parent177e709513e02f446a105792f1515d1952cb9fc6 (diff)
downloaddexon-tests-376d2f6a4c9257b727265828c9abc14a4a04740c.tar.gz
dexon-tests-376d2f6a4c9257b727265828c9abc14a4a04740c.tar.zst
dexon-tests-376d2f6a4c9257b727265828c9abc14a4a04740c.zip
test.py: quiet down by default
Diffstat (limited to 'test.py')
-rwxr-xr-xtest.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test.py b/test.py
index 9724a4ab3..6b8535830 100755
--- a/test.py
+++ b/test.py
@@ -138,7 +138,7 @@ def checkFilled(jsonFile):
or jsonFile.startswith("./TransactionTests/")
or jsonFile.startswith("./BlockchainTests/")
):
- _report("Not a file that is filled:", jsonFile)
+ # _report("Not a file that is filled:", jsonFile)
return
for test in jsonTest:
if "_info" in jsonTest[test]:
@@ -186,7 +186,8 @@ def main():
_usage()
for test in testList:
- _report(test_command + ":", test)
+ # turn on for more info
+ # _report(test_command + ":", test)
testDo(test)
if exit_status != 0: