Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1188)

Unified Diff: tools/run-tests.py

Issue 526133003: Refactoring: Make gtest testsuite the default. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/libplatform-unittests/testcfg.py ('k') | tools/testrunner/local/testsuite.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « test/libplatform-unittests/testcfg.py ('k') | tools/testrunner/local/testsuite.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698