| OLD | NEW |
| 1 # Copyright (c) 2014 The Native Client Authors. All rights reserved. | 1 # Copyright (c) 2014 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 export EXTRA_LIBS="${NACL_CLI_MAIN_LIB}" | 5 export EXTRA_LIBS="${NACL_CLI_MAIN_LIB}" |
| 6 NACLPORTS_CPPFLAGS+=" -Dpipe=nacl_spawn_pipe" | 6 NACLPORTS_CPPFLAGS+=" -Dpipe=nacl_spawn_pipe" |
| 7 | 7 |
| 8 EXECUTABLES="tests/devenv_small_test_${NACL_ARCH}${NACL_EXEEXT} \ | 8 EXECUTABLES="tests/devenv_small_test_${NACL_ARCH}${NACL_EXEEXT} \ |
| 9 jseval/jseval_${NACL_ARCH}${NACL_EXEEXT}" | 9 jseval/jseval_${NACL_ARCH}${NACL_EXEEXT}" |
| 10 | 10 |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 arches="i686 x86_64" | 147 arches="i686 x86_64" |
| 148 else | 148 else |
| 149 arches="${NACL_ARCH}" | 149 arches="${NACL_ARCH}" |
| 150 fi | 150 fi |
| 151 for arch in ${arches}; do | 151 for arch in ${arches}; do |
| 152 LogExecute python ${START_DIR}/devenv_small_test.py -x -vv -a ${arch} | 152 LogExecute python ${START_DIR}/devenv_small_test.py -x -vv -a ${arch} |
| 153 if [[ ${NACL_ARCH} == pnacl ]]; then | 153 if [[ ${NACL_ARCH} == pnacl ]]; then |
| 154 LogExecute python ${START_DIR}/jseval_test.py -x -vv -a ${arch} | 154 LogExecute python ${START_DIR}/jseval_test.py -x -vv -a ${arch} |
| 155 fi | 155 fi |
| 156 # Run large and io2014 tests only on the buildbots (against pinned revs). | 156 # Run large and io2014 tests only on the buildbots (against pinned revs). |
| 157 if [[ "${BUILDBOT_BUILDERNAME:-}" != "" ]]; then | 157 # Temporarily disabled until the latest set of pkg files is uplaoded |
| 158 LogExecute python ${START_DIR}/../devenv/devenv_large_test.py \ | 158 # by the buildbots |
| 159 -x -vv -a ${arch} | 159 # TODO(sbc): reenable this. |
| 160 LogExecute python ${START_DIR}/../devenv/io2014_test.py \ | 160 #if [[ "${BUILDBOT_BUILDERNAME:-}" != "" ]]; then |
| 161 -x -vv -a ${arch} | 161 #LogExecute python ${START_DIR}/../devenv/devenv_large_test.py \ |
| 162 fi | 162 #-x -vv -a ${arch} |
| 163 #LogExecute python ${START_DIR}/../devenv/io2014_test.py \ |
| 164 #-x -vv -a ${arch} |
| 165 #fi |
| 163 done | 166 done |
| 164 } | 167 } |
| OLD | NEW |