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 1891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1902 'src/trusted/validator/x86/build.scons', | 1902 'src/trusted/validator/x86/build.scons', |
1903 'src/trusted/validator/x86/decoder/build.scons', | 1903 'src/trusted/validator/x86/decoder/build.scons', |
1904 'src/trusted/validator/x86/decoder/generator/build.scons', | 1904 'src/trusted/validator/x86/decoder/generator/build.scons', |
1905 'src/trusted/validator/x86/ncval_reg_sfi/build.scons', | 1905 'src/trusted/validator/x86/ncval_reg_sfi/build.scons', |
1906 'src/trusted/validator/x86/ncval_seg_sfi/build.scons', | 1906 'src/trusted/validator/x86/ncval_seg_sfi/build.scons', |
1907 'src/trusted/validator/x86/ncval_seg_sfi/generator/build.scons', | 1907 'src/trusted/validator/x86/ncval_seg_sfi/generator/build.scons', |
1908 'src/trusted/validator/x86/testing/enuminsts/build.scons', | 1908 'src/trusted/validator/x86/testing/enuminsts/build.scons', |
1909 'src/trusted/validator/x86/32/build.scons', | 1909 'src/trusted/validator/x86/32/build.scons', |
1910 'src/trusted/validator/x86/64/build.scons', | 1910 'src/trusted/validator/x86/64/build.scons', |
1911 'src/trusted/validator_x86/build.scons', | 1911 'src/trusted/validator_x86/build.scons', |
| 1912 'src/trusted/validator/x86/testing/tf/build.scons', |
1912 'src/trusted/weak_ref/build.scons', | 1913 'src/trusted/weak_ref/build.scons', |
1913 'tests/common/build.scons', | 1914 'tests/common/build.scons', |
1914 'tests/python_version/build.scons', | 1915 'tests/python_version/build.scons', |
1915 'tests/srpc_message/build.scons', | 1916 'tests/srpc_message/build.scons', |
1916 'tests/tools/build.scons', | 1917 'tests/tools/build.scons', |
1917 'tests/unittests/shared/srpc/build.scons', | 1918 'tests/unittests/shared/srpc/build.scons', |
1918 'tests/unittests/shared/imc/build.scons', | 1919 'tests/unittests/shared/imc/build.scons', |
1919 'tests/unittests/shared/platform/build.scons', | 1920 'tests/unittests/shared/platform/build.scons', |
1920 'tests/unittests/trusted/asan/build.scons', | 1921 'tests/unittests/trusted/asan/build.scons', |
1921 'tests/unittests/trusted/platform_qualify/build.scons', | 1922 'tests/unittests/trusted/platform_qualify/build.scons', |
(...skipping 1360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3282 nacl_env.ValidateSdk() | 3283 nacl_env.ValidateSdk() |
3283 | 3284 |
3284 if BROKEN_TEST_COUNT > 0: | 3285 if BROKEN_TEST_COUNT > 0: |
3285 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 3286 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
3286 if GetOption('brief_comstr'): | 3287 if GetOption('brief_comstr'): |
3287 msg += " Add --verbose to the command line for more information." | 3288 msg += " Add --verbose to the command line for more information." |
3288 print msg | 3289 print msg |
3289 | 3290 |
3290 # separate warnings from actual build output | 3291 # separate warnings from actual build output |
3291 Banner('B U I L D - O U T P U T:') | 3292 Banner('B U I L D - O U T P U T:') |
OLD | NEW |