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

Unified Diff: SConstruct

Issue 7470034: Enabled PyAuto on the Mac 10.6 bots. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: SConstruct
diff --git a/SConstruct b/SConstruct
index d318edc9df15022ccb3d7cef976c392c4bd1030f..d4e947a5c3d1044d3455fa4719920a132df9555f 100755
--- a/SConstruct
+++ b/SConstruct
@@ -1291,9 +1291,11 @@ pre_base_env.AddMethod(PyAutoTester)
# Chrome bots (because PyAuto is not expected to be available on them) and when
# 32-bit test binaries are run on a 64-bit machine (because 32-bit python is not
# available on 64-bit machines).
+# However, Macs will have 32-bit versions of Python 2.5, so we should be OK.
Mark Seaborn 2011/07/26 23:38:47 Are you sure this will actually enable the test on
def PyAutoTesterIsBroken(env):
return (PPAPIBrowserTesterIsBroken(env) or
- (env.Bit('build_x86_32') and platform.architecture()[0] == '64bit'))
+ (env.Bit('build_x86_32') and platform.architecture()[0] == '64bit')
+ and not env.Bit('host_mac'))
pre_base_env.AddMethod(PyAutoTesterIsBroken)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698