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 3331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3342 'tests/exception_test/nacl.scons', | 3342 'tests/exception_test/nacl.scons', |
3343 # Disabled by Brad Chen 4 Sep to try to green Chromium nacl_integrationt tests | 3343 # Disabled by Brad Chen 4 Sep to try to green Chromium nacl_integrationt tests |
3344 # 'tests/fault_injection/nacl.scons', | 3344 # 'tests/fault_injection/nacl.scons', |
3345 'tests/fib/nacl.scons', | 3345 'tests/fib/nacl.scons', |
3346 'tests/file/nacl.scons', | 3346 'tests/file/nacl.scons', |
3347 'tests/fixedfeaturecpu/nacl.scons', | 3347 'tests/fixedfeaturecpu/nacl.scons', |
3348 'tests/gc_instrumentation/nacl.scons', | 3348 'tests/gc_instrumentation/nacl.scons', |
3349 'tests/glibc_file64_test/nacl.scons', | 3349 'tests/glibc_file64_test/nacl.scons', |
3350 'tests/glibc_static_test/nacl.scons', | 3350 'tests/glibc_static_test/nacl.scons', |
3351 'tests/glibc_syscall_wrappers/nacl.scons', | 3351 'tests/glibc_syscall_wrappers/nacl.scons', |
| 3352 'tests/glibc_socket_wrappers/nacl.scons', |
3352 'tests/hello_world/nacl.scons', | 3353 'tests/hello_world/nacl.scons', |
3353 'tests/infoleak/nacl.scons', | 3354 'tests/infoleak/nacl.scons', |
3354 'tests/libc_free_hello_world/nacl.scons', | 3355 'tests/libc_free_hello_world/nacl.scons', |
3355 'tests/longjmp/nacl.scons', | 3356 'tests/longjmp/nacl.scons', |
3356 'tests/loop/nacl.scons', | 3357 'tests/loop/nacl.scons', |
3357 'tests/mandel/nacl.scons', | 3358 'tests/mandel/nacl.scons', |
3358 'tests/manifest_file/nacl.scons', | 3359 'tests/manifest_file/nacl.scons', |
3359 'tests/math/nacl.scons', | 3360 'tests/math/nacl.scons', |
3360 'tests/memcheck_test/nacl.scons', | 3361 'tests/memcheck_test/nacl.scons', |
3361 'tests/mmap/nacl.scons', | 3362 'tests/mmap/nacl.scons', |
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3942 nacl_env.ValidateSdk() | 3943 nacl_env.ValidateSdk() |
3943 | 3944 |
3944 if BROKEN_TEST_COUNT > 0: | 3945 if BROKEN_TEST_COUNT > 0: |
3945 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 3946 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
3946 if GetOption('brief_comstr'): | 3947 if GetOption('brief_comstr'): |
3947 msg += " Add --verbose to the command line for more information." | 3948 msg += " Add --verbose to the command line for more information." |
3948 print msg | 3949 print msg |
3949 | 3950 |
3950 # separate warnings from actual build output | 3951 # separate warnings from actual build output |
3951 Banner('B U I L D - O U T P U T:') | 3952 Banner('B U I L D - O U T P U T:') |
OLD | NEW |