| OLD | NEW |
| 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 NACLPORTS_CPPFLAGS+=" ${NACL_EXCEPTIONS_FLAG}" |
| 5 if [ "${NACL_LIBC}" = "newlib" ]; then | 5 if [ "${NACL_LIBC}" = "newlib" ]; then |
| 6 # TODO(sbc): remove once this is fixed: | 6 # TODO(sbc): remove once this is fixed: |
| 7 # https://code.google.com/p/nativeclient/issues/detail?id=3790 | 7 # https://code.google.com/p/nativeclient/issues/detail?id=3790 |
| 8 NACLPORTS_CPPFLAGS+=" -DSSIZE_MAX=LONG_MAX" | 8 NACLPORTS_CPPFLAGS+=" -DSSIZE_MAX=LONG_MAX" |
| 9 EXE_DIR="" | 9 EXE_DIR="" |
| 10 else | 10 else |
| 11 EXE_DIR=".libs/" | 11 EXE_DIR=".libs/" |
| 12 fi | 12 fi |
| 13 | 13 |
| 14 EXTRA_CONFIGURE_ARGS=" | 14 EXTRA_CONFIGURE_ARGS=" |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 # The tests as (a) very slow and (b) not all passing at this point. | 70 # The tests as (a) very slow and (b) not all passing at this point. |
| 71 return 0 | 71 return 0 |
| 72 | 72 |
| 73 # As part of 'make check' there will be several test executables built. | 73 # As part of 'make check' there will be several test executables built. |
| 74 # We need to create the script that launch them ahead of time. | 74 # We need to create the script that launch them ahead of time. |
| 75 for EXE in ${TEST_EXECUTABLES}; do | 75 for EXE in ${TEST_EXECUTABLES}; do |
| 76 WriteLauncherScript ${EXE%%${NACL_EXEEXT}} $(basename ${EXE}) | 76 WriteLauncherScript ${EXE%%${NACL_EXEEXT}} $(basename ${EXE}) |
| 77 done | 77 done |
| 78 LogExecute make check | 78 LogExecute make check |
| 79 } | 79 } |
| OLD | NEW |