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

Unified Diff: test/perf-tests/testcfg.py

Issue 503643002: Add performance test skeleton. Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review. 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/perf-tests/perf-tests.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/perf-tests/testcfg.py
diff --git a/test/heap-unittests/testcfg.py b/test/perf-tests/testcfg.py
similarity index 89%
copy from test/heap-unittests/testcfg.py
copy to test/perf-tests/testcfg.py
index ffa4b59de5bf792decbdb2fd5178486b26e28614..a30bf5188a95ee6d0e88d4471951651a99d9f264 100644
--- a/test/heap-unittests/testcfg.py
+++ b/test/perf-tests/testcfg.py
@@ -11,9 +11,9 @@ from testrunner.local import utils
from testrunner.objects import testcase
-class HeapUnitTestsSuite(testsuite.TestSuite):
+class PerfTestsSuite(testsuite.TestSuite):
def __init__(self, name, root):
- super(HeapUnitTestsSuite, self).__init__(name, root)
+ super(PerfTestsSuite, 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 HeapUnitTestsSuite(testsuite.TestSuite):
context.mode_flags)
def shell(self):
- return "heap-unittests"
+ return "perf-tests"
def GetSuite(name, root):
- return HeapUnitTestsSuite(name, root)
+ return PerfTestsSuite(name, root)
« no previous file with comments | « test/perf-tests/perf-tests.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698