| 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 1910 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1921 'src/trusted/validator/x86/build.scons', | 1921 'src/trusted/validator/x86/build.scons', |
| 1922 'src/trusted/validator/x86/decoder/build.scons', | 1922 'src/trusted/validator/x86/decoder/build.scons', |
| 1923 'src/trusted/validator/x86/decoder/generator/build.scons', | 1923 'src/trusted/validator/x86/decoder/generator/build.scons', |
| 1924 'src/trusted/validator/x86/ncval_reg_sfi/build.scons', | 1924 'src/trusted/validator/x86/ncval_reg_sfi/build.scons', |
| 1925 'src/trusted/validator/x86/ncval_seg_sfi/build.scons', | 1925 'src/trusted/validator/x86/ncval_seg_sfi/build.scons', |
| 1926 'src/trusted/validator/x86/ncval_seg_sfi/generator/build.scons', | 1926 'src/trusted/validator/x86/ncval_seg_sfi/generator/build.scons', |
| 1927 'src/trusted/validator/x86/testing/enuminsts/build.scons', | 1927 'src/trusted/validator/x86/testing/enuminsts/build.scons', |
| 1928 'src/trusted/validator/x86/32/build.scons', | 1928 'src/trusted/validator/x86/32/build.scons', |
| 1929 'src/trusted/validator/x86/64/build.scons', | 1929 'src/trusted/validator/x86/64/build.scons', |
| 1930 'src/trusted/validator_x86/build.scons', | 1930 'src/trusted/validator_x86/build.scons', |
| 1931 'src/trusted/validator/x86/testing/tf/build.scons', |
| 1931 'src/trusted/weak_ref/build.scons', | 1932 'src/trusted/weak_ref/build.scons', |
| 1932 'tests/common/build.scons', | 1933 'tests/common/build.scons', |
| 1933 'tests/python_version/build.scons', | 1934 'tests/python_version/build.scons', |
| 1934 'tests/srpc_message/build.scons', | 1935 'tests/srpc_message/build.scons', |
| 1935 'tests/tools/build.scons', | 1936 'tests/tools/build.scons', |
| 1936 'tests/unittests/shared/srpc/build.scons', | 1937 'tests/unittests/shared/srpc/build.scons', |
| 1937 'tests/unittests/shared/imc/build.scons', | 1938 'tests/unittests/shared/imc/build.scons', |
| 1938 'tests/unittests/shared/platform/build.scons', | 1939 'tests/unittests/shared/platform/build.scons', |
| 1939 'tests/unittests/trusted/asan/build.scons', | 1940 'tests/unittests/trusted/asan/build.scons', |
| 1940 'tests/unittests/trusted/platform_qualify/build.scons', | 1941 'tests/unittests/trusted/platform_qualify/build.scons', |
| (...skipping 1357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3298 nacl_env.ValidateSdk() | 3299 nacl_env.ValidateSdk() |
| 3299 | 3300 |
| 3300 if BROKEN_TEST_COUNT > 0: | 3301 if BROKEN_TEST_COUNT > 0: |
| 3301 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 3302 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
| 3302 if GetOption('brief_comstr'): | 3303 if GetOption('brief_comstr'): |
| 3303 msg += " Add --verbose to the command line for more information." | 3304 msg += " Add --verbose to the command line for more information." |
| 3304 print msg | 3305 print msg |
| 3305 | 3306 |
| 3306 # separate warnings from actual build output | 3307 # separate warnings from actual build output |
| 3307 Banner('B U I L D - O U T P U T:') | 3308 Banner('B U I L D - O U T P U T:') |
| OLD | NEW |