| 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 re | 9 import re |
| 10 import subprocess | 10 import subprocess |
| (...skipping 1916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1927 'pnacl/driver/tests/build.scons', | 1927 'pnacl/driver/tests/build.scons', |
| 1928 'toolchain_build/build.scons', | 1928 'toolchain_build/build.scons', |
| 1929 'src/shared/gio/build.scons', | 1929 'src/shared/gio/build.scons', |
| 1930 'src/shared/imc/build.scons', | 1930 'src/shared/imc/build.scons', |
| 1931 'src/shared/ldr/build.scons', | 1931 'src/shared/ldr/build.scons', |
| 1932 'src/shared/platform/build.scons', | 1932 'src/shared/platform/build.scons', |
| 1933 'src/shared/srpc/build.scons', | 1933 'src/shared/srpc/build.scons', |
| 1934 'src/shared/utils/build.scons', | 1934 'src/shared/utils/build.scons', |
| 1935 'src/third_party_mod/gtest/build.scons', | 1935 'src/third_party_mod/gtest/build.scons', |
| 1936 'src/tools/validator_tools/build.scons', | 1936 'src/tools/validator_tools/build.scons', |
| 1937 'src/trusted/cpu_features/build.scons', |
| 1937 'src/trusted/debug_stub/build.scons', | 1938 'src/trusted/debug_stub/build.scons', |
| 1938 'src/trusted/desc/build.scons', | 1939 'src/trusted/desc/build.scons', |
| 1939 'src/trusted/fault_injection/build.scons', | 1940 'src/trusted/fault_injection/build.scons', |
| 1940 'src/trusted/generic_container/build.scons', | 1941 'src/trusted/generic_container/build.scons', |
| 1941 'src/trusted/gio/build.scons', | 1942 'src/trusted/gio/build.scons', |
| 1942 'src/trusted/interval_multiset/build.scons', | 1943 'src/trusted/interval_multiset/build.scons', |
| 1943 'src/trusted/manifest_name_service_proxy/build.scons', | 1944 'src/trusted/manifest_name_service_proxy/build.scons', |
| 1944 'src/trusted/nacl_base/build.scons', | 1945 'src/trusted/nacl_base/build.scons', |
| 1945 'src/trusted/nonnacl_util/build.scons', | 1946 'src/trusted/nonnacl_util/build.scons', |
| 1946 'src/trusted/perf_counter/build.scons', | 1947 'src/trusted/perf_counter/build.scons', |
| (...skipping 1576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3523 nacl_env.ValidateSdk() | 3524 nacl_env.ValidateSdk() |
| 3524 | 3525 |
| 3525 if BROKEN_TEST_COUNT > 0: | 3526 if BROKEN_TEST_COUNT > 0: |
| 3526 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 3527 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
| 3527 if GetOption('brief_comstr'): | 3528 if GetOption('brief_comstr'): |
| 3528 msg += " Add --verbose to the command line for more information." | 3529 msg += " Add --verbose to the command line for more information." |
| 3529 print msg | 3530 print msg |
| 3530 | 3531 |
| 3531 # separate warnings from actual build output | 3532 # separate warnings from actual build output |
| 3532 Banner('B U I L D - O U T P U T:') | 3533 Banner('B U I L D - O U T P U T:') |
| OLD | NEW |