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

Unified Diff: buildbot/buildbot_selector.py

Issue 7745047: Enable browser tests with glibc. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « SConstruct ('k') | buildbot/buildbot_standard.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: buildbot/buildbot_selector.py
===================================================================
--- buildbot/buildbot_selector.py (revision 6583)
+++ buildbot/buildbot_selector.py (working copy)
@@ -243,6 +243,15 @@
env = os.environ.copy()
env['ARCHIVE_IRT'] = builder in IRT_ARCHIVE_BUILDERS and '1' or '0'
+ cmd_patch = python + ' ' + \
+ os.path.join('..', 'native_client', 'buildbot', 'patch.py') + ' ' + \
+ os.path.join('..', 'native_client', 'ppapi.patch')
+ print cmd_patch
+ subprocess.call(
+ cmd_patch,
+ env=env,
+ cwd=os.path.join('..','ppapi'),
+ shell=True)
print "%s runs: %s\n" % (builder, cmd)
retcode = subprocess.call(cmd, env=env, shell=True)
sys.exit(retcode)
« no previous file with comments | « SConstruct ('k') | buildbot/buildbot_standard.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698