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

Side by Side Diff: ports/jpeg8d/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/fftw/build.sh ('k') | ports/zlib/build.sh » ('j') | 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 EXECUTABLES="rdjpgcom${NACL_EXEEXT} wrjpgcom${NACL_EXEEXT} \ 5 EXECUTABLES="rdjpgcom${NACL_EXEEXT} wrjpgcom${NACL_EXEEXT} \
6 cjpeg${NACL_EXEEXT} djpeg${NACL_EXEEXT} jpegtran${NACL_EXEEXT}" 6 cjpeg${NACL_EXEEXT} djpeg${NACL_EXEEXT} jpegtran${NACL_EXEEXT}"
7 7
8 RunTestsPnacl() {
9 local arch=$1
10 for exe in ${EXECUTABLES}; do
11 local exe_noext=${exe%.*}
12 WriteLauncherScript ${exe_noext} ${exe_noext}.${arch}.nexe
13 done
14 LogExecute make test
15 }
16
8 TestStep() { 17 TestStep() {
9 export SEL_LDR_LIB_PATH=$PWD/.libs 18 export SEL_LDR_LIB_PATH=$PWD/.libs
10 19
11 if [[ ${NACL_SHARED} == 1 ]]; then 20 if [[ ${NACL_SHARED} == 1 ]]; then
12 for exe in ${EXECUTABLES}; do 21 for exe in ${EXECUTABLES}; do
13 local script=$(basename ${exe%.*}) 22 local script=$(basename ${exe%.*})
14 WriteLauncherScript ${script} ${exe} 23 WriteLauncherScript ${script} ${exe}
15 done 24 done
16 fi 25 fi
17 LogExecute make test 26 LogExecute make test
18 27
19 if [[ ${NACL_ARCH} == pnacl ]]; then 28 if [[ ${NACL_ARCH} == pnacl ]]; then
20 for arch in x86-32 arm; do 29 RunTestsPnacl x86-32
21 for exe in ${EXECUTABLES}; do 30 if [[ ${SEL_LDR_SUPPORTS_ARM} == 1 ]]; then
22 local exe_noext=${exe%.*} 31 RunTestsPnacl arm
23 WriteLauncherScript ${exe_noext} ${exe_noext}.${arch}.nexe 32 fi
24 done
25 LogExecute make test
26 done
27 fi 33 fi
28 } 34 }
OLDNEW
« no previous file with comments | « ports/fftw/build.sh ('k') | ports/zlib/build.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698