| 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 subprocess | 9 import subprocess |
| 10 import sys | 10 import sys |
| (...skipping 1909 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1920 'src/tools/validator_tools/build.scons', | 1920 'src/tools/validator_tools/build.scons', |
| 1921 'src/trusted/debug_stub/build.scons', | 1921 'src/trusted/debug_stub/build.scons', |
| 1922 'src/trusted/desc/build.scons', | 1922 'src/trusted/desc/build.scons', |
| 1923 'src/trusted/fault_injection/build.scons', | 1923 'src/trusted/fault_injection/build.scons', |
| 1924 'src/trusted/gio/build.scons', | 1924 'src/trusted/gio/build.scons', |
| 1925 'src/trusted/interval_multiset/build.scons', | 1925 'src/trusted/interval_multiset/build.scons', |
| 1926 'src/trusted/manifest_name_service_proxy/build.scons', | 1926 'src/trusted/manifest_name_service_proxy/build.scons', |
| 1927 'src/trusted/nacl_base/build.scons', | 1927 'src/trusted/nacl_base/build.scons', |
| 1928 'src/trusted/nonnacl_util/build.scons', | 1928 'src/trusted/nonnacl_util/build.scons', |
| 1929 'src/trusted/perf_counter/build.scons', | 1929 'src/trusted/perf_counter/build.scons', |
| 1930 'src/trusted/platform/build.scons', |
| 1930 'src/trusted/platform_qualify/build.scons', | 1931 'src/trusted/platform_qualify/build.scons', |
| 1931 'src/trusted/python_bindings/build.scons', | 1932 'src/trusted/python_bindings/build.scons', |
| 1932 'src/trusted/reverse_service/build.scons', | 1933 'src/trusted/reverse_service/build.scons', |
| 1933 'src/trusted/sel_universal/build.scons', | 1934 'src/trusted/sel_universal/build.scons', |
| 1934 'src/trusted/service_runtime/build.scons', | 1935 'src/trusted/service_runtime/build.scons', |
| 1935 'src/trusted/simple_service/build.scons', | 1936 'src/trusted/simple_service/build.scons', |
| 1936 'src/trusted/threading/build.scons', | 1937 'src/trusted/threading/build.scons', |
| 1937 'src/trusted/validator/build.scons', | 1938 'src/trusted/validator/build.scons', |
| 1938 'src/trusted/validator_ragel/build.scons', | 1939 'src/trusted/validator_ragel/build.scons', |
| 1939 'src/trusted/validator/x86/build.scons', | 1940 'src/trusted/validator/x86/build.scons', |
| (...skipping 1394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3334 nacl_env.ValidateSdk() | 3335 nacl_env.ValidateSdk() |
| 3335 | 3336 |
| 3336 if BROKEN_TEST_COUNT > 0: | 3337 if BROKEN_TEST_COUNT > 0: |
| 3337 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 3338 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
| 3338 if GetOption('brief_comstr'): | 3339 if GetOption('brief_comstr'): |
| 3339 msg += " Add --verbose to the command line for more information." | 3340 msg += " Add --verbose to the command line for more information." |
| 3340 print msg | 3341 print msg |
| 3341 | 3342 |
| 3342 # separate warnings from actual build output | 3343 # separate warnings from actual build output |
| 3343 Banner('B U I L D - O U T P U T:') | 3344 Banner('B U I L D - O U T P U T:') |
| OLD | NEW |