| OLD | NEW |
| 1 #!/bin/bash -e | 1 #!/bin/bash -e |
| 2 | 2 |
| 3 # Copyright 2014 The Chromium OS Authors. All rights reserved. | 3 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 ncpus=$(getconf _NPROCESSORS_ONLN) | 7 ncpus=$(getconf _NPROCESSORS_ONLN) |
| 8 | 8 |
| 9 cd cpp | 9 cd cpp |
| 10 | 10 |
| 11 # Run Debug tests. | 11 # Run Debug tests. |
| 12 echo "" | 12 echo "" |
| 13 echo "=============================================" | 13 echo "=============================================" |
| 14 echo "=============== Debug tests =================" | 14 echo "=============== Debug tests =================" |
| 15 echo "=============================================" | 15 echo "=============================================" |
| 16 echo "" | 16 echo "" |
| 17 make -j${ncpus} debug_tests_run || { exit 1; } | 17 make -j${ncpus} debug_tests_run || { exit 1; } |
| 18 | 18 |
| 19 # Run Release tests. | 19 # Run Release tests. |
| 20 echo "=============================================" | 20 echo "=============================================" |
| 21 echo "============== Release tests ================" | 21 echo "============== Release tests ================" |
| 22 echo "=============================================" | 22 echo "=============================================" |
| 23 echo "" | 23 echo "" |
| 24 make -j${ncpus} tests_run | 24 make -j${ncpus} tests_run |
| OLD | NEW |