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 2216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2227 'src/shared/serialization/build.scons', | 2227 'src/shared/serialization/build.scons', |
2228 'src/shared/srpc/build.scons', | 2228 'src/shared/srpc/build.scons', |
2229 'src/shared/utils/build.scons', | 2229 'src/shared/utils/build.scons', |
2230 'src/third_party/gtest/build.scons', | 2230 'src/third_party/gtest/build.scons', |
2231 'src/trusted/cpu_features/build.scons', | 2231 'src/trusted/cpu_features/build.scons', |
2232 'src/trusted/debug_stub/build.scons', | 2232 'src/trusted/debug_stub/build.scons', |
2233 'src/trusted/desc/build.scons', | 2233 'src/trusted/desc/build.scons', |
2234 'src/trusted/desc_cacheability/build.scons', | 2234 'src/trusted/desc_cacheability/build.scons', |
2235 'src/trusted/fault_injection/build.scons', | 2235 'src/trusted/fault_injection/build.scons', |
2236 'src/trusted/interval_multiset/build.scons', | 2236 'src/trusted/interval_multiset/build.scons', |
2237 'src/trusted/manifest_name_service_proxy/build.scons', | |
2238 'src/trusted/nacl_base/build.scons', | 2237 'src/trusted/nacl_base/build.scons', |
2239 'src/trusted/nonnacl_util/build.scons', | 2238 'src/trusted/nonnacl_util/build.scons', |
2240 'src/trusted/perf_counter/build.scons', | 2239 'src/trusted/perf_counter/build.scons', |
2241 'src/trusted/platform_qualify/build.scons', | 2240 'src/trusted/platform_qualify/build.scons', |
2242 'src/trusted/reverse_service/build.scons', | 2241 'src/trusted/reverse_service/build.scons', |
2243 'src/trusted/seccomp_bpf/build.scons', | 2242 'src/trusted/seccomp_bpf/build.scons', |
2244 'src/trusted/sel_universal/build.scons', | 2243 'src/trusted/sel_universal/build.scons', |
2245 'src/trusted/service_runtime/build.scons', | 2244 'src/trusted/service_runtime/build.scons', |
2246 'src/trusted/simple_service/build.scons', | 2245 'src/trusted/simple_service/build.scons', |
2247 'src/trusted/threading/build.scons', | 2246 'src/trusted/threading/build.scons', |
(...skipping 1796 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4044 nacl_env.ValidateSdk() | 4043 nacl_env.ValidateSdk() |
4045 | 4044 |
4046 if BROKEN_TEST_COUNT > 0: | 4045 if BROKEN_TEST_COUNT > 0: |
4047 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 4046 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
4048 if GetOption('brief_comstr'): | 4047 if GetOption('brief_comstr'): |
4049 msg += " Add --verbose to the command line for more information." | 4048 msg += " Add --verbose to the command line for more information." |
4050 print msg | 4049 print msg |
4051 | 4050 |
4052 # separate warnings from actual build output | 4051 # separate warnings from actual build output |
4053 Banner('B U I L D - O U T P U T:') | 4052 Banner('B U I L D - O U T P U T:') |
OLD | NEW |