From 950feb6940fb5705c181f7e34389ad7b6f38e753 Mon Sep 17 00:00:00 2001 From: "ricow@chromium.org" Date: Tue, 26 Jul 2011 05:56:45 +0000 Subject: [PATCH] Switch from sample shell to d8 for unit test Landing for yangguo to coordinate with buildbot update. Original codereview: http://codereview.chromium.org/7282008/ Review URL: http://codereview.chromium.org/7495033 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@8739 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- test/benchmarks/testcfg.py | 2 +- test/es5conform/testcfg.py | 2 +- test/message/testcfg.py | 2 +- test/mjsunit/testcfg.py | 2 +- test/mozilla/testcfg.py | 2 +- test/sputnik/testcfg.py | 2 +- test/test262/testcfg.py | 2 +- tools/test.py | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/test/benchmarks/testcfg.py b/test/benchmarks/testcfg.py index 51d8520..ab9d40f 100644 --- a/test/benchmarks/testcfg.py +++ b/test/benchmarks/testcfg.py @@ -91,7 +91,7 @@ class BenchmarkTestConfiguration(test.TestConfiguration): return [test] def GetBuildRequirements(self): - return ['sample', 'sample=shell'] + return ['d8'] def GetTestStatus(self, sections, defs): pass diff --git a/test/es5conform/testcfg.py b/test/es5conform/testcfg.py index af74b8c..b6a17d9 100644 --- a/test/es5conform/testcfg.py +++ b/test/es5conform/testcfg.py @@ -97,7 +97,7 @@ class ES5ConformTestConfiguration(test.TestConfiguration): return tests def GetBuildRequirements(self): - return ['sample', 'sample=shell'] + return ['d8'] def GetTestStatus(self, sections, defs): status_file = join(self.root, 'es5conform.status') diff --git a/test/message/testcfg.py b/test/message/testcfg.py index aabbfef..af467e6 100644 --- a/test/message/testcfg.py +++ b/test/message/testcfg.py @@ -125,7 +125,7 @@ class MessageTestConfiguration(test.TestConfiguration): return result def GetBuildRequirements(self): - return ['sample', 'sample=shell'] + return ['d8'] def GetTestStatus(self, sections, defs): status_file = join(self.root, 'message.status') diff --git a/test/mjsunit/testcfg.py b/test/mjsunit/testcfg.py index 7c6311b..87ed4fa 100644 --- a/test/mjsunit/testcfg.py +++ b/test/mjsunit/testcfg.py @@ -145,7 +145,7 @@ class MjsunitTestConfiguration(test.TestConfiguration): return result def GetBuildRequirements(self): - return ['sample', 'sample=shell'] + return ['d8'] def GetTestStatus(self, sections, defs): status_file = join(self.root, 'mjsunit.status') diff --git a/test/mozilla/testcfg.py b/test/mozilla/testcfg.py index 3728f79..587781d 100644 --- a/test/mozilla/testcfg.py +++ b/test/mozilla/testcfg.py @@ -125,7 +125,7 @@ class MozillaTestConfiguration(test.TestConfiguration): return tests def GetBuildRequirements(self): - return ['sample', 'sample=shell'] + return ['d8'] def GetTestStatus(self, sections, defs): status_file = join(self.root, 'mozilla.status') diff --git a/test/sputnik/testcfg.py b/test/sputnik/testcfg.py index c9eb4f2..1032c13 100644 --- a/test/sputnik/testcfg.py +++ b/test/sputnik/testcfg.py @@ -101,7 +101,7 @@ class SputnikTestConfiguration(test.TestConfiguration): return result def GetBuildRequirements(self): - return ['sample', 'sample=shell'] + return ['d8'] def GetTestStatus(self, sections, defs): status_file = join(self.root, 'sputnik.status') diff --git a/test/test262/testcfg.py b/test/test262/testcfg.py index aa1212e..9482046 100644 --- a/test/test262/testcfg.py +++ b/test/test262/testcfg.py @@ -111,7 +111,7 @@ class Test262TestConfiguration(test.TestConfiguration): return tests def GetBuildRequirements(self): - return ['sample', 'sample=shell'] + return ['d8'] def GetTestStatus(self, sections, defs): status_file = join(self.root, 'test262.status') diff --git a/tools/test.py b/tools/test.py index ec21ffe..6132614 100755 --- a/tools/test.py +++ b/tools/test.py @@ -1208,7 +1208,7 @@ def BuildOptions(): dest="suppress_dialogs", default=True, action="store_true") result.add_option("--no-suppress-dialogs", help="Display Windows dialogs for crashing tests", dest="suppress_dialogs", action="store_false") - result.add_option("--shell", help="Path to V8 shell", default="shell") + result.add_option("--shell", help="Path to V8 shell", default="d8") result.add_option("--isolates", help="Whether to test isolates", default=False, action="store_true") result.add_option("--store-unexpected-output", help="Store the temporary JS files from tests that fails", -- 2.7.4