| OLD | NEW |
| 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 1 # Copyright (c) 2012 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 EnableCliMain | 5 EnableCliMain |
| 6 EnableGlibcCompat | 6 EnableGlibcCompat |
| 7 | 7 |
| 8 NACLPORTS_LIBS+=" -lncurses -lm" | 8 NACLPORTS_LIBS+=" -lncurses -lm" |
| 9 | 9 |
| 10 if [ "${NACL_LIBC}" = "newlib" ]; then | 10 if [ "${NACL_LIBC}" = "newlib" ]; then |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 | 115 |
| 116 # Zip for upload to the web store. | 116 # Zip for upload to the web store. |
| 117 pushd ${PUBLISH_DIR} | 117 pushd ${PUBLISH_DIR} |
| 118 rm -f debug_extension.zip | 118 rm -f debug_extension.zip |
| 119 zip -r debug_extension.zip debug_extension/ | 119 zip -r debug_extension.zip debug_extension/ |
| 120 popd | 120 popd |
| 121 } | 121 } |
| 122 | 122 |
| 123 PostInstallTestStep() { | 123 PostInstallTestStep() { |
| 124 # Temporartily disabled until this gets fixed: | 124 # Temporartily disabled until this gets fixed: |
| 125 # https://code.google.com/p/naclports/issues/detail?id=187 | 125 # https://bugs.chromium.org/p/webports/issues/detail?id=187 |
| 126 return | 126 return |
| 127 if [[ ${OS_NAME} == Darwin && ${NACL_ARCH} == x86_64 ]]; then | 127 if [[ ${OS_NAME} == Darwin && ${NACL_ARCH} == x86_64 ]]; then |
| 128 echo "Skipping gdb/debug tests on unsupported mac + x86_64 configuration." | 128 echo "Skipping gdb/debug tests on unsupported mac + x86_64 configuration." |
| 129 elif [[ ${NACL_ARCH} == arm ]]; then | 129 elif [[ ${NACL_ARCH} == arm ]]; then |
| 130 echo "Skipping gdb/debug tests on arm for now." | 130 echo "Skipping gdb/debug tests on arm for now." |
| 131 else | 131 else |
| 132 LogExecute python ${START_DIR}/gdb_test.py -x -vv -a ${NACL_ARCH} | 132 LogExecute python ${START_DIR}/gdb_test.py -x -vv -a ${NACL_ARCH} |
| 133 LogExecute python ${START_DIR}/debugger_test.py -x -vv -a ${NACL_ARCH} | 133 LogExecute python ${START_DIR}/debugger_test.py -x -vv -a ${NACL_ARCH} |
| 134 fi | 134 fi |
| 135 } | 135 } |
| OLD | NEW |