OLD | NEW |
1 # -*- python -*- | 1 # -*- python -*- |
2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2011 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 stat | 10 import stat |
(...skipping 2268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2279 'tests/imc_sockets/nacl.scons', | 2279 'tests/imc_sockets/nacl.scons', |
2280 'tests/inbrowser_test_runner/nacl.scons', | 2280 'tests/inbrowser_test_runner/nacl.scons', |
2281 'tests/irt_hw/nacl.scons', | 2281 'tests/irt_hw/nacl.scons', |
2282 'tests/libc_free_hello_world/nacl.scons', | 2282 'tests/libc_free_hello_world/nacl.scons', |
2283 'tests/longjmp/nacl.scons', | 2283 'tests/longjmp/nacl.scons', |
2284 'tests/loop/nacl.scons', | 2284 'tests/loop/nacl.scons', |
2285 'tests/mandel/nacl.scons', | 2285 'tests/mandel/nacl.scons', |
2286 'tests/math/nacl.scons', | 2286 'tests/math/nacl.scons', |
2287 'tests/memcheck_test/nacl.scons', | 2287 'tests/memcheck_test/nacl.scons', |
2288 'tests/mmap/nacl.scons', | 2288 'tests/mmap/nacl.scons', |
2289 'tests/multiarch/nacl.scons', | 2289 # multiarch is disabled for now, as it doesn't test what it purports to. |
| 2290 # It was already disabled on Windows, irt, and ARM, and referred to the |
| 2291 # now obsolete prebuilt infrastructure. |
| 2292 # TODO(sehr): reenable multiarch or move to something similar. |
| 2293 #'tests/multiarch/nacl.scons', |
2290 'tests/multiple_sandboxes/nacl.scons', | 2294 'tests/multiple_sandboxes/nacl.scons', |
2291 'tests/nacl.scons', | 2295 'tests/nacl.scons', |
2292 'tests/nacl_log/nacl.scons', | 2296 'tests/nacl_log/nacl.scons', |
2293 'tests/nameservice/nacl.scons', | 2297 'tests/nameservice/nacl.scons', |
2294 'tests/nanosleep/nacl.scons', | 2298 'tests/nanosleep/nacl.scons', |
2295 'tests/native_worker/nacl.scons', | 2299 'tests/native_worker/nacl.scons', |
2296 'tests/noop/nacl.scons', | 2300 'tests/noop/nacl.scons', |
2297 'tests/nrd_xfer/nacl.scons', | 2301 'tests/nrd_xfer/nacl.scons', |
2298 'tests/nthread_nice/nacl.scons', | 2302 'tests/nthread_nice/nacl.scons', |
2299 'tests/null/nacl.scons', | 2303 'tests/null/nacl.scons', |
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2827 Default(['all_programs', 'all_bundles', 'all_test_programs', 'all_libraries']) | 2831 Default(['all_programs', 'all_bundles', 'all_test_programs', 'all_libraries']) |
2828 | 2832 |
2829 if BROKEN_TEST_COUNT > 0: | 2833 if BROKEN_TEST_COUNT > 0: |
2830 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 2834 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
2831 if GetOption('brief_comstr'): | 2835 if GetOption('brief_comstr'): |
2832 msg += " Add --verbose to the command line for more information." | 2836 msg += " Add --verbose to the command line for more information." |
2833 print msg | 2837 print msg |
2834 | 2838 |
2835 # separate warnings from actual build output | 2839 # separate warnings from actual build output |
2836 Banner('B U I L D - O U T P U T:') | 2840 Banner('B U I L D - O U T P U T:') |
OLD | NEW |