Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2013 The Native Client Authors. All rights reserved. | 1 # Copyright (c) 2013 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 NACLPORTS_CPPFLAGS+="${NACL_EXCEPTIONS_FLAG}" | |
|
bradnelson
2016/05/02 17:38:58
Maybe have a space in-between on all of these? Thi
Ankur Mittal
2016/05/02 20:22:15
Done.
| |
| 5 if [ "${NACL_ARCH}" = "pnacl" ]; then | 6 if [ "${NACL_ARCH}" = "pnacl" ]; then |
| 6 NACLPORTS_CFLAGS+=" -std=gnu89" | 7 NACLPORTS_CFLAGS+=" -std=gnu89" |
| 7 fi | 8 fi |
| 8 | 9 |
| 9 TestStep() { | 10 TestStep() { |
| 10 return 0 | 11 return 0 |
| 11 | 12 |
| 12 if [ ${NACL_ARCH} == "pnacl" ]; then | 13 if [ ${NACL_ARCH} == "pnacl" ]; then |
| 13 # Run once for each architecture. | 14 # Run once for each architecture. |
| 14 | 15 |
| 15 WriteLauncherScript test/testil testil.x86-32.nexe | 16 WriteLauncherScript test/testil testil.x86-32.nexe |
| 16 (cd test && make check) | 17 (cd test && make check) |
| 17 | 18 |
| 18 WriteLauncherScript test/testil testil.x86-64.nexe | 19 WriteLauncherScript test/testil testil.x86-64.nexe |
| 19 (cd test && make check) | 20 (cd test && make check) |
| 20 else | 21 else |
| 21 (cd test && make check) | 22 (cd test && make check) |
| 22 fi | 23 fi |
| 23 } | 24 } |
| OLD | NEW |