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

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

Issue 447563003: Add initial support for compiler unit tests using GTest/GMock. (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/compiler-unittests/instruction-selector-unittest.cc ('k') | tools/presubmit.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/compiler-unittests/testcfg.py
diff --git a/test/base-unittests/testcfg.py b/test/compiler-unittests/testcfg.py
similarity index 88%
copy from test/base-unittests/testcfg.py
copy to test/compiler-unittests/testcfg.py
index 0ed46dcdb117b5060fae8e8502cf6b18de525002..4eec956f7e3cca07d0cbccb4724e8884e62e355f 100644
--- a/test/base-unittests/testcfg.py
+++ b/test/compiler-unittests/testcfg.py
@@ -11,9 +11,9 @@ from testrunner.local import utils
from testrunner.objects import testcase
-class BaseUnitTestsSuite(testsuite.TestSuite):
+class CompilerUnitTestsSuite(testsuite.TestSuite):
def __init__(self, name, root):
- super(BaseUnitTestsSuite, self).__init__(name, root)
+ super(CompilerUnitTestsSuite, self).__init__(name, root)
def ListTests(self, context):
shell = os.path.abspath(os.path.join(context.shell_dir, self.shell()))
@@ -44,8 +44,8 @@ class BaseUnitTestsSuite(testsuite.TestSuite):
context.mode_flags)
def shell(self):
- return "base-unittests"
+ return "compiler-unittests"
def GetSuite(name, root):
- return BaseUnitTestsSuite(name, root)
+ return CompilerUnitTestsSuite(name, root)
« no previous file with comments | « test/compiler-unittests/instruction-selector-unittest.cc ('k') | tools/presubmit.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698