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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « ports/jpeg8d/build.sh ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Native Client Authors. All rights reserved. 1 # Copyright (c) 2011 The Native Client Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # zlib doesn't support custom build directories so we have 5 # zlib doesn't support custom build directories so we have
6 # to build directly in the source dir. 6 # to build directly in the source dir.
7 BUILD_DIR=${SRC_DIR} 7 BUILD_DIR=${SRC_DIR}
8 EXECUTABLES="minigzip${NACL_EXEEXT} example${NACL_EXEEXT}" 8 EXECUTABLES="minigzip${NACL_EXEEXT} example${NACL_EXEEXT}"
9 if [ "${NACL_SHARED}" = "1" ]; then 9 if [ "${NACL_SHARED}" = "1" ]; then
10 EXECUTABLES+=" libz.so.1" 10 EXECUTABLES+=" libz.so.1"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 else \ 47 else \
48 echo ' *** zlib test FAILED ***'; \ 48 echo ' *** zlib test FAILED ***'; \
49 exit 1 49 exit 1
50 fi 50 fi
51 unset SEL_LDR_LIB_PATH 51 unset SEL_LDR_LIB_PATH
52 } 52 }
53 53
54 TestStep() { 54 TestStep() {
55 RunExample 55 RunExample
56 RunMinigzip 56 RunMinigzip
57 if [ "${NACL_ARCH}" = "pnacl" ]; then 57 if [[ ${NACL_ARCH} == pnacl ]]; then
58 # Run the minigzip tests again but with x86-32 and arm translations 58 # Run the minigzip tests again but with x86-32 and arm translations
59 WriteLauncherScript minigzip minigzip.x86-32.nexe 59 WriteLauncherScript minigzip minigzip.x86-32.nexe
60 RunMinigzip 60 RunMinigzip
61 WriteLauncherScript minigzip minigzip.arm.nexe 61 if [[ ${SEL_LDR_SUPPORTS_ARM} == 1 ]]; then
62 RunMinigzip 62 WriteLauncherScript minigzip minigzip.arm.nexe
63 RunMinigzip
64 fi
63 fi 65 fi
64 } 66 }
OLDNEW
« 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