| 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 1877 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1888 'src/shared/imc/build.scons', | 1888 'src/shared/imc/build.scons', |
| 1889 'src/shared/ldr/build.scons', | 1889 'src/shared/ldr/build.scons', |
| 1890 'src/shared/platform/build.scons', | 1890 'src/shared/platform/build.scons', |
| 1891 'src/shared/srpc/build.scons', | 1891 'src/shared/srpc/build.scons', |
| 1892 'src/shared/utils/build.scons', | 1892 'src/shared/utils/build.scons', |
| 1893 'src/third_party_mod/gtest/build.scons', | 1893 'src/third_party_mod/gtest/build.scons', |
| 1894 'src/tools/validator_tools/build.scons', | 1894 'src/tools/validator_tools/build.scons', |
| 1895 'src/trusted/debug_stub/build.scons', | 1895 'src/trusted/debug_stub/build.scons', |
| 1896 'src/trusted/desc/build.scons', | 1896 'src/trusted/desc/build.scons', |
| 1897 'src/trusted/fault_injection/build.scons', | 1897 'src/trusted/fault_injection/build.scons', |
| 1898 'src/trusted/generic_container/build.scons', |
| 1898 'src/trusted/gio/build.scons', | 1899 'src/trusted/gio/build.scons', |
| 1899 'src/trusted/interval_multiset/build.scons', | 1900 'src/trusted/interval_multiset/build.scons', |
| 1900 'src/trusted/manifest_name_service_proxy/build.scons', | 1901 'src/trusted/manifest_name_service_proxy/build.scons', |
| 1901 'src/trusted/nacl_base/build.scons', | 1902 'src/trusted/nacl_base/build.scons', |
| 1902 'src/trusted/nonnacl_util/build.scons', | 1903 'src/trusted/nonnacl_util/build.scons', |
| 1903 'src/trusted/perf_counter/build.scons', | 1904 'src/trusted/perf_counter/build.scons', |
| 1904 'src/trusted/platform_qualify/build.scons', | 1905 'src/trusted/platform_qualify/build.scons', |
| 1905 'src/trusted/python_bindings/build.scons', | 1906 'src/trusted/python_bindings/build.scons', |
| 1906 'src/trusted/reverse_service/build.scons', | 1907 'src/trusted/reverse_service/build.scons', |
| 1907 'src/trusted/sel_universal/build.scons', | 1908 'src/trusted/sel_universal/build.scons', |
| (...skipping 1503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3411 nacl_env.ValidateSdk() | 3412 nacl_env.ValidateSdk() |
| 3412 | 3413 |
| 3413 if BROKEN_TEST_COUNT > 0: | 3414 if BROKEN_TEST_COUNT > 0: |
| 3414 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 3415 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
| 3415 if GetOption('brief_comstr'): | 3416 if GetOption('brief_comstr'): |
| 3416 msg += " Add --verbose to the command line for more information." | 3417 msg += " Add --verbose to the command line for more information." |
| 3417 print msg | 3418 print msg |
| 3418 | 3419 |
| 3419 # separate warnings from actual build output | 3420 # separate warnings from actual build output |
| 3420 Banner('B U I L D - O U T P U T:') | 3421 Banner('B U I L D - O U T P U T:') |
| OLD | NEW |