Index: tools/run-tests.py |
diff --git a/tools/run-tests.py b/tools/run-tests.py |
index d48b70ce8b0b3afc34f4c071493c28b6d9c5fe86..f38052358f34eb8bfe62ad8517b1898e7b75ca37 100755 |
--- a/tools/run-tests.py |
+++ b/tools/run-tests.py |
@@ -42,6 +42,7 @@ import sys |
import time |
from testrunner.local import execution |
+from testrunner.local import gtest_testsuite |
from testrunner.local import progress |
from testrunner.local import testsuite |
from testrunner.local import utils |
@@ -426,7 +427,7 @@ def Main(): |
suites = [] |
for root in suite_paths: |
suite = testsuite.TestSuite.LoadTestSuite( |
- os.path.join(workspace, "test", root)) |
+ os.path.join(workspace, "test", root), gtest_testsuite.GTestTestSuite) |
Benedikt Meurer
2014/09/02 05:13:01
The GTestTestSuite should probably be named Google
|
if suite: |
suites.append(suite) |