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

Unified Diff: ports/zlib/build.sh

Issue 1578573002: Disable running of sel_ldr arm tests on mac (Closed) Base URL: https://chromium.googlesource.com/webports.git@master
Patch Set: Created 4 years, 11 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 | « ports/jpeg8d/build.sh ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ports/zlib/build.sh
diff --git a/ports/zlib/build.sh b/ports/zlib/build.sh
index 4750888b9a0ca08c540d3af01e7119bcd40d9041..a2e6f77cfe758fc01dac93c1b5db140b288778da 100644
--- a/ports/zlib/build.sh
+++ b/ports/zlib/build.sh
@@ -54,11 +54,13 @@ RunExample() {
TestStep() {
RunExample
RunMinigzip
- if [ "${NACL_ARCH}" = "pnacl" ]; then
+ if [[ ${NACL_ARCH} == pnacl ]]; then
# Run the minigzip tests again but with x86-32 and arm translations
WriteLauncherScript minigzip minigzip.x86-32.nexe
RunMinigzip
- WriteLauncherScript minigzip minigzip.arm.nexe
- RunMinigzip
+ if [[ ${SEL_LDR_SUPPORTS_ARM} == 1 ]]; then
+ WriteLauncherScript minigzip minigzip.arm.nexe
+ RunMinigzip
+ fi
fi
}
« no previous file with comments | « ports/jpeg8d/build.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698