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

Unified Diff: native_client_sdk/src/build_tools/test_sdk.py

Issue 2001853002: Re-enable 32-bit linux for nacl sdk, disable for mac tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | « native_client_sdk/src/build_tools/sdk_files.list ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/src/build_tools/test_sdk.py
diff --git a/native_client_sdk/src/build_tools/test_sdk.py b/native_client_sdk/src/build_tools/test_sdk.py
index 831cef5c48858f612394f58c89c2890ac7e8920c..dbc8285b3c0bec9c9ec79321f88586e3a276fee5 100755
--- a/native_client_sdk/src/build_tools/test_sdk.py
+++ b/native_client_sdk/src/build_tools/test_sdk.py
@@ -105,8 +105,8 @@ def StepRunSelLdrTests(pepperdir, sanitizer):
# arch
archs = (getos.GetSystemArch('win'),)
elif getos.GetPlatform() == 'mac':
- # We only ship 32-bit version of sel_ldr on mac.
- archs = ('x86_32',)
+ # We only ship 64-bit version of sel_ldr on mac.
+ archs = ('x86_64',)
else:
# On linux we can run both 32 and 64-bit, and arm (via qemu)
archs = ('x86_64', 'x86_32', 'arm')
« no previous file with comments | « native_client_sdk/src/build_tools/sdk_files.list ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698