| 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 json | 7 import json |
| 8 import os | 8 import os |
| 9 import platform | 9 import platform |
| 10 import re | 10 import re |
| (...skipping 3235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3246 'tests/nameservice/nacl.scons', | 3246 'tests/nameservice/nacl.scons', |
| 3247 'tests/nanosleep/nacl.scons', | 3247 'tests/nanosleep/nacl.scons', |
| 3248 'tests/noop/nacl.scons', | 3248 'tests/noop/nacl.scons', |
| 3249 'tests/nrd_xfer/nacl.scons', | 3249 'tests/nrd_xfer/nacl.scons', |
| 3250 'tests/nthread_nice/nacl.scons', | 3250 'tests/nthread_nice/nacl.scons', |
| 3251 'tests/null/nacl.scons', | 3251 'tests/null/nacl.scons', |
| 3252 'tests/nullptr/nacl.scons', | 3252 'tests/nullptr/nacl.scons', |
| 3253 'tests/pagesize/nacl.scons', | 3253 'tests/pagesize/nacl.scons', |
| 3254 'tests/performance/nacl.scons', | 3254 'tests/performance/nacl.scons', |
| 3255 'tests/pnacl_abi/nacl.scons', | 3255 'tests/pnacl_abi/nacl.scons', |
| 3256 'tests/pnacl_dynamic_loading/nacl.scons', |
| 3256 'tests/pnacl_native_objects/nacl.scons', | 3257 'tests/pnacl_native_objects/nacl.scons', |
| 3257 'tests/process_create/nacl.scons', | 3258 'tests/process_create/nacl.scons', |
| 3258 'tests/random/nacl.scons', | 3259 'tests/random/nacl.scons', |
| 3259 'tests/redir/nacl.scons', | 3260 'tests/redir/nacl.scons', |
| 3260 'tests/rodata_not_writable/nacl.scons', | 3261 'tests/rodata_not_writable/nacl.scons', |
| 3261 'tests/run_py/nacl.scons', | 3262 'tests/run_py/nacl.scons', |
| 3262 'tests/sel_ldr/nacl.scons', | 3263 'tests/sel_ldr/nacl.scons', |
| 3263 'tests/sel_ldr_seccomp/nacl.scons', | 3264 'tests/sel_ldr_seccomp/nacl.scons', |
| 3264 'tests/sel_main_chrome/nacl.scons', | 3265 'tests/sel_main_chrome/nacl.scons', |
| 3265 'tests/signal_handler/nacl.scons', | 3266 'tests/signal_handler/nacl.scons', |
| (...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3915 nacl_env.ValidateSdk() | 3916 nacl_env.ValidateSdk() |
| 3916 | 3917 |
| 3917 if BROKEN_TEST_COUNT > 0: | 3918 if BROKEN_TEST_COUNT > 0: |
| 3918 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 3919 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
| 3919 if GetOption('brief_comstr'): | 3920 if GetOption('brief_comstr'): |
| 3920 msg += " Add --verbose to the command line for more information." | 3921 msg += " Add --verbose to the command line for more information." |
| 3921 print msg | 3922 print msg |
| 3922 | 3923 |
| 3923 # separate warnings from actual build output | 3924 # separate warnings from actual build output |
| 3924 Banner('B U I L D - O U T P U T:') | 3925 Banner('B U I L D - O U T P U T:') |
| OLD | NEW |