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 3223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3234 'tests/exception_test/nacl.scons', | 3234 'tests/exception_test/nacl.scons', |
3235 # Disabled by Brad Chen 4 Sep to try to green Chromium nacl_integrationt tests | 3235 # Disabled by Brad Chen 4 Sep to try to green Chromium nacl_integrationt tests |
3236 # 'tests/fault_injection/nacl.scons', | 3236 # 'tests/fault_injection/nacl.scons', |
3237 'tests/fib/nacl.scons', | 3237 'tests/fib/nacl.scons', |
3238 'tests/file/nacl.scons', | 3238 'tests/file/nacl.scons', |
3239 'tests/fixedfeaturecpu/nacl.scons', | 3239 'tests/fixedfeaturecpu/nacl.scons', |
3240 'tests/gc_instrumentation/nacl.scons', | 3240 'tests/gc_instrumentation/nacl.scons', |
3241 'tests/glibc_file64_test/nacl.scons', | 3241 'tests/glibc_file64_test/nacl.scons', |
3242 'tests/glibc_static_test/nacl.scons', | 3242 'tests/glibc_static_test/nacl.scons', |
3243 'tests/glibc_syscall_wrappers/nacl.scons', | 3243 'tests/glibc_syscall_wrappers/nacl.scons', |
| 3244 'tests/glibc_socket_wrappers/nacl.scons', |
3244 'tests/hello_world/nacl.scons', | 3245 'tests/hello_world/nacl.scons', |
3245 'tests/infoleak/nacl.scons', | 3246 'tests/infoleak/nacl.scons', |
3246 'tests/libc_free_hello_world/nacl.scons', | 3247 'tests/libc_free_hello_world/nacl.scons', |
3247 'tests/longjmp/nacl.scons', | 3248 'tests/longjmp/nacl.scons', |
3248 'tests/loop/nacl.scons', | 3249 'tests/loop/nacl.scons', |
3249 'tests/mandel/nacl.scons', | 3250 'tests/mandel/nacl.scons', |
3250 'tests/manifest_file/nacl.scons', | 3251 'tests/manifest_file/nacl.scons', |
3251 'tests/math/nacl.scons', | 3252 'tests/math/nacl.scons', |
3252 'tests/memcheck_test/nacl.scons', | 3253 'tests/memcheck_test/nacl.scons', |
3253 'tests/mmap/nacl.scons', | 3254 'tests/mmap/nacl.scons', |
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3787 nacl_env.ValidateSdk() | 3788 nacl_env.ValidateSdk() |
3788 | 3789 |
3789 if BROKEN_TEST_COUNT > 0: | 3790 if BROKEN_TEST_COUNT > 0: |
3790 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 3791 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
3791 if GetOption('brief_comstr'): | 3792 if GetOption('brief_comstr'): |
3792 msg += " Add --verbose to the command line for more information." | 3793 msg += " Add --verbose to the command line for more information." |
3793 print msg | 3794 print msg |
3794 | 3795 |
3795 # separate warnings from actual build output | 3796 # separate warnings from actual build output |
3796 Banner('B U I L D - O U T P U T:') | 3797 Banner('B U I L D - O U T P U T:') |
OLD | NEW |