From 376d2f6a4c9257b727265828c9abc14a4a04740c Mon Sep 17 00:00:00 2001
From: Everett Hildenbrandt <hildenb2@illinois.edu>
Date: Thu, 31 May 2018 23:57:37 -0600
Subject: test.py: quiet down by default

---
 test.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

(limited to 'test.py')

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:
-- 
cgit