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

Unified Diff: test/libplatform-unittests/testcfg.py

Issue 526043002: Refactor libplatform unit tests to use GTest/GMock. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Integrate into test driver. 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/libplatform-unittests.status ('k') | tools/presubmit.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/libplatform-unittests/testcfg.py
diff --git a/test/compiler-unittests/testcfg.py b/test/libplatform-unittests/testcfg.py
similarity index 87%
copy from test/compiler-unittests/testcfg.py
copy to test/libplatform-unittests/testcfg.py
index b067aee861b60d592a6477db3009571a692f6378..7370b5a10a51ca0d6f214dab93b154d45cc7b166 100644
--- a/test/compiler-unittests/testcfg.py
+++ b/test/libplatform-unittests/testcfg.py
@@ -11,9 +11,9 @@ from testrunner.local import utils
from testrunner.objects import testcase
-class CompilerUnitTestsSuite(testsuite.TestSuite):
+class LibplatformUnitTestsSuite(testsuite.TestSuite):
def __init__(self, name, root):
- super(CompilerUnitTestsSuite, self).__init__(name, root)
+ super(LibplatformUnitTestsSuite, self).__init__(name, root)
def ListTests(self, context):
shell = os.path.abspath(os.path.join(context.shell_dir, self.shell()))
@@ -45,8 +45,8 @@ class CompilerUnitTestsSuite(testsuite.TestSuite):
context.mode_flags)
def shell(self):
- return "compiler-unittests"
+ return "libplatform-unittests"
def GetSuite(name, root):
- return CompilerUnitTestsSuite(name, root)
+ return LibplatformUnitTestsSuite(name, root)
« no previous file with comments | « test/libplatform-unittests/libplatform-unittests.status ('k') | tools/presubmit.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698