From 6a9fee8805e4a20178461a16053df7ed19a4117b Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Thu, 30 Jan 2014 00:47:58 +0000 Subject: [PATCH] [Test] Register premature termination of Python tests as a failure --- test/SConscript | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/SConscript b/test/SConscript index 2cc5df74b..41f975242 100644 --- a/test/SConscript +++ b/test/SConscript @@ -81,6 +81,8 @@ def addPythonTest(testname, subdir, script, interpreter, outfile, if not code: # Test was successful open(target[0].path, 'w').write(time.asctime()+'\n') + else: + testResults.failed[testname] = True for line in open(outfile): status, name = line.strip().split(': ', 1)