Reviewers: Mads Ager, Nicolas Sylvain,
Description:
Added python to all commands in v8testing (for windows compatability)
Please review this at http://codereview.chromium.org/603030
SVN Base:
svn://chrome-svn.corp.google.com/chrome/trunk/tools/buildbot/scripts/slave/
Affected files:
M v8/v8testing.py
Index: v8/v8testing.py
===================================================================
--- v8/v8testing.py (revision 38765)
+++ v8/v8testing.py (working copy)
@@ -18,27 +18,27 @@
def main_linux(options, args):
if (options.testname == 'leak'):
- cmd = ['tools/test.py', '--no-build', '--mode', 'debug', '--progress',
- 'verbose', '--timeout', '180', '--time', '-Snapshot=on',
- '--special-command', '"@ --nopreallocate-message-memory"',
- '--valgrind', 'mjsunit/leakcheck',
- 'mjsunit/regress/regress-1134697',
- 'mjsunit/number-tostring-small']
+ cmd = ['python', 'tools/test.py', '--no-build', '--mode',
+ 'debug', '--progress', 'verbose', '--timeout', '180',
+ '--time', '-Snapshot=on', '--special-command',
+ '"@ --nopreallocate-message-memory"',
+ '--valgrind', 'mjsunit/leakcheck',
+ 'mjsunit/regress/regress-1134697', 'mjsunit/number-tostring-small']
elif (options.testname):
- cmd = ['tools/test.py',
+ cmd = ['python', 'tools/test.py',
'-j3', options.testname,
'--progress=verbose',
'--no-build',
'--mode=' + options.target]
elif(options.simulator):
- cmd = ['tools/test.py',
+ cmd = ['python', 'tools/test.py',
'-j3',
'--simulator', options.simulator,
'--progress=verbose',
'--no-build',
'--mode=' + options.target]
else:
- cmd = ['tools/test.py',
+ cmd = ['python', 'tools/test.py',
'-j3',
'--timeout=180',
'--progress=verbose',
@@ -105,5 +105,3 @@
if __name__ == '__main__':
sys.exit(main())
-
-