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

Side by Side Diff: chrome/test/nacl_test_injection/buildbot_nacl_integration.py

Issue 10815080: Add an interface for nacl to create delete-on-close temp files, (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 import os 6 import os
7 import subprocess 7 import subprocess
8 import sys 8 import sys
9 9
10 10
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 cmd = [sys.executable, 73 cmd = [sys.executable,
74 '/b/build/scripts/slave/runtest.py', 74 '/b/build/scripts/slave/runtest.py',
75 '--run-python-script', 75 '--run-python-script',
76 '--target=', 76 '--target=',
77 '--build-dir=', 77 '--build-dir=',
78 '--', 78 '--',
79 nacl_integration_script, 79 nacl_integration_script,
80 # TODO(ncbray) re-enable. 80 # TODO(ncbray) re-enable.
81 # https://code.google.com/p/chromium/issues/detail?id=133568 81 # https://code.google.com/p/chromium/issues/detail?id=133568
82 '--disable_glibc', 82 '--disable_glibc',
83 '--integration_bot=1',
jvoung (off chromium) 2012/07/24 22:18:27 temporary for testing.
83 '--disable_tests=%s' % ','.join(tests_to_disable)] 84 '--disable_tests=%s' % ','.join(tests_to_disable)]
84 cmd += args 85 cmd += args
85 sys.stdout.write('Running %s\n' % ' '.join(cmd)) 86 sys.stdout.write('Running %s\n' % ' '.join(cmd))
86 sys.stdout.flush() 87 sys.stdout.flush()
87 return subprocess.call(cmd) 88 return subprocess.call(cmd)
88 89
89 90
90 if __name__ == '__main__': 91 if __name__ == '__main__':
91 sys.exit(Main(sys.argv[1:])) 92 sys.exit(Main(sys.argv[1:]))
OLDNEW
« no previous file with comments | « chrome/renderer/pepper/ppb_nacl_private_impl.cc ('k') | ppapi/api/private/finish_writing_these/ppb_nacl_private.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698