| OLD | NEW |
| 1 #! -*- python -*- | 1 #! -*- python -*- |
| 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 import atexit | 6 import atexit |
| 7 import glob | 7 import glob |
| 8 import os | 8 import os |
| 9 import platform | 9 import platform |
| 10 import shutil | 10 import shutil |
| (...skipping 3465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3476 'tests/sbrk/nacl.scons', | 3476 'tests/sbrk/nacl.scons', |
| 3477 'tests/sel_main_chrome/nacl.scons', | 3477 'tests/sel_main_chrome/nacl.scons', |
| 3478 'tests/signal_handler/nacl.scons', | 3478 'tests/signal_handler/nacl.scons', |
| 3479 'tests/sleep/nacl.scons', | 3479 'tests/sleep/nacl.scons', |
| 3480 'tests/srpc/nacl.scons', | 3480 'tests/srpc/nacl.scons', |
| 3481 'tests/srpc_hw/nacl.scons', | 3481 'tests/srpc_hw/nacl.scons', |
| 3482 'tests/srpc_message/nacl.scons', | 3482 'tests/srpc_message/nacl.scons', |
| 3483 'tests/stack_alignment/nacl.scons', | 3483 'tests/stack_alignment/nacl.scons', |
| 3484 'tests/stubout_mode/nacl.scons', | 3484 'tests/stubout_mode/nacl.scons', |
| 3485 'tests/sysbasic/nacl.scons', | 3485 'tests/sysbasic/nacl.scons', |
| 3486 'tests/syscall_return_regs/nacl.scons', |
| 3486 'tests/syscall_return_sandboxing/nacl.scons', | 3487 'tests/syscall_return_sandboxing/nacl.scons', |
| 3487 'tests/syscalls/nacl.scons', | 3488 'tests/syscalls/nacl.scons', |
| 3488 'tests/threads/nacl.scons', | 3489 'tests/threads/nacl.scons', |
| 3489 'tests/time/nacl.scons', | 3490 'tests/time/nacl.scons', |
| 3490 'tests/tls/nacl.scons', | 3491 'tests/tls/nacl.scons', |
| 3491 'tests/tls_perf/nacl.scons', | 3492 'tests/tls_perf/nacl.scons', |
| 3492 'tests/tls_segment_x86_32/nacl.scons', | 3493 'tests/tls_segment_x86_32/nacl.scons', |
| 3493 'tests/toolchain/nacl.scons', | 3494 'tests/toolchain/nacl.scons', |
| 3494 'tests/toolchain/arm/nacl.scons', | 3495 'tests/toolchain/arm/nacl.scons', |
| 3495 'tests/unittests/shared/platform/nacl.scons', | 3496 'tests/unittests/shared/platform/nacl.scons', |
| (...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4045 nacl_env.ValidateSdk() | 4046 nacl_env.ValidateSdk() |
| 4046 | 4047 |
| 4047 if BROKEN_TEST_COUNT > 0: | 4048 if BROKEN_TEST_COUNT > 0: |
| 4048 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 4049 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
| 4049 if GetOption('brief_comstr'): | 4050 if GetOption('brief_comstr'): |
| 4050 msg += " Add --verbose to the command line for more information." | 4051 msg += " Add --verbose to the command line for more information." |
| 4051 print msg | 4052 print msg |
| 4052 | 4053 |
| 4053 # separate warnings from actual build output | 4054 # separate warnings from actual build output |
| 4054 Banner('B U I L D - O U T P U T:') | 4055 Banner('B U I L D - O U T P U T:') |
| OLD | NEW |