| 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 os | 7 import os |
| 8 import platform | 8 import platform |
| 9 import subprocess | 9 import subprocess |
| 10 import sys | 10 import sys |
| (...skipping 2790 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2801 'tests/noop/nacl.scons', | 2801 'tests/noop/nacl.scons', |
| 2802 'tests/nrd_xfer/nacl.scons', | 2802 'tests/nrd_xfer/nacl.scons', |
| 2803 'tests/nthread_nice/nacl.scons', | 2803 'tests/nthread_nice/nacl.scons', |
| 2804 'tests/null/nacl.scons', | 2804 'tests/null/nacl.scons', |
| 2805 'tests/nullptr/nacl.scons', | 2805 'tests/nullptr/nacl.scons', |
| 2806 'tests/pagesize/nacl.scons', | 2806 'tests/pagesize/nacl.scons', |
| 2807 'tests/pnacl_abi/nacl.scons', | 2807 'tests/pnacl_abi/nacl.scons', |
| 2808 'tests/redir/nacl.scons', | 2808 'tests/redir/nacl.scons', |
| 2809 'tests/rodata_not_writable/nacl.scons', | 2809 'tests/rodata_not_writable/nacl.scons', |
| 2810 'tests/sbrk/nacl.scons', | 2810 'tests/sbrk/nacl.scons', |
| 2811 'tests/sel_ldr/nacl.scons', |
| 2811 'tests/sel_main_chrome/nacl.scons', | 2812 'tests/sel_main_chrome/nacl.scons', |
| 2812 'tests/signal_handler/nacl.scons', | 2813 'tests/signal_handler/nacl.scons', |
| 2813 'tests/sleep/nacl.scons', | 2814 'tests/sleep/nacl.scons', |
| 2814 'tests/srpc/nacl.scons', | 2815 'tests/srpc/nacl.scons', |
| 2815 'tests/srpc_hw/nacl.scons', | 2816 'tests/srpc_hw/nacl.scons', |
| 2816 'tests/srpc_message/nacl.scons', | 2817 'tests/srpc_message/nacl.scons', |
| 2817 'tests/stack_alignment/nacl.scons', | 2818 'tests/stack_alignment/nacl.scons', |
| 2818 'tests/stubout_mode/nacl.scons', | 2819 'tests/stubout_mode/nacl.scons', |
| 2819 'tests/sysbasic/nacl.scons', | 2820 'tests/sysbasic/nacl.scons', |
| 2820 'tests/syscall_return_regs/nacl.scons', | 2821 'tests/syscall_return_regs/nacl.scons', |
| (...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3399 nacl_env.ValidateSdk() | 3400 nacl_env.ValidateSdk() |
| 3400 | 3401 |
| 3401 if BROKEN_TEST_COUNT > 0: | 3402 if BROKEN_TEST_COUNT > 0: |
| 3402 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 3403 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
| 3403 if GetOption('brief_comstr'): | 3404 if GetOption('brief_comstr'): |
| 3404 msg += " Add --verbose to the command line for more information." | 3405 msg += " Add --verbose to the command line for more information." |
| 3405 print msg | 3406 print msg |
| 3406 | 3407 |
| 3407 # separate warnings from actual build output | 3408 # separate warnings from actual build output |
| 3408 Banner('B U I L D - O U T P U T:') | 3409 Banner('B U I L D - O U T P U T:') |
| OLD | NEW |