give Lists more time, less verbose keepalive

This commit is contained in:
Alex Groce
2018-07-14 11:29:45 -07:00
parent 96fc87f781
commit 6ffd9b4486
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ def logrun(cmd, file, timeout):
lastOutput = time.time()
while (p.poll() is None) and ((time.time() - start) < timeout):
if (time.time() - lastOutput) > 300:
sys.stderr.write("\n\n** FIVE MINUTE KEEPALIVE FROM TEST LOGGING **\n\n")
sys.stderr.write(".")
sys.stderr.flush()
with open(file, 'r') as inf:
contents = inf.read()
+1 -1
View File
@@ -74,7 +74,7 @@ class TestBasicFunctionality(TestCase):
if os.getenv("TASK") is None or os.getenv("TASK") == "LISTS":
(r, output) = logrun.logrun([deepstate, "build/examples/Lists"],
"deepstate.out", 1800)
"deepstate.out", 3000)
self.assertEqual(r, 0)
self.assertTrue("Passed: Vector_DoubleReversal" in output)