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 | |
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')
-rw-r--r-- | tools/purify/chrome_tests.py | 5 | ||||
-rwxr-xr-x | tools/traceline/traceline/scripts/crit_sec.js | 2 | ||||
-rwxr-xr-x | tools/traceline/traceline/scripts/heap.js | 2 |
3 files changed, 4 insertions, 5 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) - diff --git a/tools/traceline/traceline/scripts/crit_sec.js b/tools/traceline/traceline/scripts/crit_sec.js index 018309a..906bba1 100755 --- a/tools/traceline/traceline/scripts/crit_sec.js +++ b/tools/traceline/traceline/scripts/crit_sec.js @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -// You should run this with v8, like v8_shell_sample alloc.js datafile.json +// You should run this with v8, like v8_shell alloc.js datafile.json function toHex(num) { var str = ""; diff --git a/tools/traceline/traceline/scripts/heap.js b/tools/traceline/traceline/scripts/heap.js index e8b57a7..9025ac3 100755 --- a/tools/traceline/traceline/scripts/heap.js +++ b/tools/traceline/traceline/scripts/heap.js @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -// You should run this with v8, like v8_shell_sample alloc.js datafile.json +// You should run this with v8, like v8_shell alloc.js datafile.json function toHex(num) { var str = ""; |