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

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

Issue 475233005: Setup heap-unittests and runtime-unittests. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Also add heap-unittests. 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/runtime-unittests/runtime-unittests.status ('k') | tools/run-tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/runtime-unittests/testcfg.py
diff --git a/test/base-unittests/testcfg.py b/test/runtime-unittests/testcfg.py
similarity index 88%
copy from test/base-unittests/testcfg.py
copy to test/runtime-unittests/testcfg.py
index 0ed46dcdb117b5060fae8e8502cf6b18de525002..f89fadcf5feb66d418f0fbe502586bfb7e548823 100644
--- a/test/base-unittests/testcfg.py
+++ b/test/runtime-unittests/testcfg.py
@@ -11,9 +11,9 @@ from testrunner.local import utils
from testrunner.objects import testcase
-class BaseUnitTestsSuite(testsuite.TestSuite):
+class RuntimeUnitTestsSuite(testsuite.TestSuite):
def __init__(self, name, root):
- super(BaseUnitTestsSuite, self).__init__(name, root)
+ super(RuntimeUnitTestsSuite, 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 "runtime-unittests"
def GetSuite(name, root):
- return BaseUnitTestsSuite(name, root)
+ return RuntimeUnitTestsSuite(name, root)
« no previous file with comments | « test/runtime-unittests/runtime-unittests.status ('k') | tools/run-tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698