Index: tools/testrunner/local/testsuite.py |
diff --git a/tools/testrunner/local/testsuite.py b/tools/testrunner/local/testsuite.py |
index 47bc08f8399767343e02dee5fa285868e8e783a8..148697bfde7506e630baf53105dd06b59e7e5628 100644 |
--- a/tools/testrunner/local/testsuite.py |
+++ b/tools/testrunner/local/testsuite.py |
@@ -234,7 +234,7 @@ class GoogleTestSuite(TestSuite): |
if output.exit_code != 0: |
print output.stdout |
print output.stderr |
- return [] |
+ raise Exception("Test executable failed to list the tests.") |
Jakob Kummerow
2014/09/26 13:49:10
You should print something to identify the suite (
|
tests = [] |
test_case = '' |
for line in output.stdout.splitlines(): |