diff options
author | bradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-06 04:52:27 +0000 |
---|---|---|
committer | bradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-06 04:52:27 +0000 |
commit | cb331ab3515086f18d6b4d13d4aac0e4bfbd1eff (patch) | |
tree | 40825bf70fe6a3fa66af6f29b32660d13142ebd1 /tools/purify | |
parent | 3503d52d309a1ea37b6060077a9527c903a77db8 (diff) | |
download | chromium_src-cb331ab3515086f18d6b4d13d4aac0e4bfbd1eff.zip chromium_src-cb331ab3515086f18d6b4d13d4aac0e4bfbd1eff.tar.gz chromium_src-cb331ab3515086f18d6b4d13d4aac0e4bfbd1eff.tar.bz2 |
Redirecting buildbots to use v8_shell.exe instead of v8_shell_sample.exe
Review URL: http://codereview.chromium.org/62049
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13151 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/purify')
-rw-r--r-- | tools/purify/chrome_tests.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/purify/chrome_tests.py b/tools/purify/chrome_tests.py index b6c095a..76bb051 100644 --- a/tools/purify/chrome_tests.py +++ b/tools/purify/chrome_tests.py @@ -124,7 +124,7 @@ class ChromeTests: self._data_dir = os.path.join(module_dir, "test", "data", "purify") else: self._data_dir = os.path.join(module_dir, "data", "purify") - + cmd = list(self._command_preamble) cmd.append("--data_dir=%s" % self._data_dir) cmd.append("--report_dir=%s" % self._report_dir) @@ -344,7 +344,7 @@ class ChromeTests: multi=True) def TestV8(self): - shell = "v8_shell_sample.exe" + shell = "v8_shell.exe" # We need to compute _build_dir early to in order to pass in the # shell path as an argument to the test script. self.ComputeBuildDir("chrome", shell) @@ -402,4 +402,3 @@ def _main(argv): if __name__ == "__main__": ret = _main(sys.argv) sys.exit(ret) - |