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

Unified Diff: test/heap-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/heap-unittests/heap-unittests.status ('k') | test/runtime-unittests/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/heap-unittests/testcfg.py
diff --git a/test/base-unittests/testcfg.py b/test/heap-unittests/testcfg.py
similarity index 89%
copy from test/base-unittests/testcfg.py
copy to test/heap-unittests/testcfg.py
index 0ed46dcdb117b5060fae8e8502cf6b18de525002..7c80a75ea2f82a23e62813b143104d96aecd4911 100644
--- a/test/base-unittests/testcfg.py
+++ b/test/heap-unittests/testcfg.py
@@ -11,9 +11,9 @@ from testrunner.local import utils
from testrunner.objects import testcase
-class BaseUnitTestsSuite(testsuite.TestSuite):
+class HeapUnitTestsSuite(testsuite.TestSuite):
def __init__(self, name, root):
- super(BaseUnitTestsSuite, self).__init__(name, root)
+ super(HeapUnitTestsSuite, 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 "heap-unittests"
def GetSuite(name, root):
- return BaseUnitTestsSuite(name, root)
+ return HeapUnitTestsSuite(name, root)
« no previous file with comments | « test/heap-unittests/heap-unittests.status ('k') | test/runtime-unittests/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698