| 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 3312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3323 'tests/loop/nacl.scons', | 3323 'tests/loop/nacl.scons', |
| 3324 'tests/mandel/nacl.scons', | 3324 'tests/mandel/nacl.scons', |
| 3325 'tests/math/nacl.scons', | 3325 'tests/math/nacl.scons', |
| 3326 'tests/memcheck_test/nacl.scons', | 3326 'tests/memcheck_test/nacl.scons', |
| 3327 'tests/minsfi/nacl.scons', | 3327 'tests/minsfi/nacl.scons', |
| 3328 'tests/mmap/nacl.scons', | 3328 'tests/mmap/nacl.scons', |
| 3329 'tests/mmap_main_nexe/nacl.scons', | 3329 'tests/mmap_main_nexe/nacl.scons', |
| 3330 'tests/mmap_prot_exec/nacl.scons', | 3330 'tests/mmap_prot_exec/nacl.scons', |
| 3331 'tests/mmap_race_protect/nacl.scons', | 3331 'tests/mmap_race_protect/nacl.scons', |
| 3332 'tests/nacl_log/nacl.scons', | 3332 'tests/nacl_log/nacl.scons', |
| 3333 'tests/nameservice/nacl.scons', | |
| 3334 'tests/nanosleep/nacl.scons', | 3333 'tests/nanosleep/nacl.scons', |
| 3335 'tests/nonsfi/nacl.scons', | 3334 'tests/nonsfi/nacl.scons', |
| 3336 'tests/noop/nacl.scons', | 3335 'tests/noop/nacl.scons', |
| 3337 'tests/nrd_xfer/nacl.scons', | 3336 'tests/nrd_xfer/nacl.scons', |
| 3338 'tests/nthread_nice/nacl.scons', | 3337 'tests/nthread_nice/nacl.scons', |
| 3339 'tests/null/nacl.scons', | 3338 'tests/null/nacl.scons', |
| 3340 'tests/nullptr/nacl.scons', | 3339 'tests/nullptr/nacl.scons', |
| 3341 'tests/pagesize/nacl.scons', | 3340 'tests/pagesize/nacl.scons', |
| 3342 'tests/performance/nacl.scons', | 3341 'tests/performance/nacl.scons', |
| 3343 'tests/pnacl_abi/nacl.scons', | 3342 'tests/pnacl_abi/nacl.scons', |
| (...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4026 nacl_env.ValidateSdk() | 4025 nacl_env.ValidateSdk() |
| 4027 | 4026 |
| 4028 if BROKEN_TEST_COUNT > 0: | 4027 if BROKEN_TEST_COUNT > 0: |
| 4029 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 4028 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
| 4030 if GetOption('brief_comstr'): | 4029 if GetOption('brief_comstr'): |
| 4031 msg += " Add --verbose to the command line for more information." | 4030 msg += " Add --verbose to the command line for more information." |
| 4032 print msg | 4031 print msg |
| 4033 | 4032 |
| 4034 # separate warnings from actual build output | 4033 # separate warnings from actual build output |
| 4035 Banner('B U I L D - O U T P U T:') | 4034 Banner('B U I L D - O U T P U T:') |
| OLD | NEW |