Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Side by Side Diff: SConstruct

Issue 10096008: added a test to check glibc socket functions wrappers (Closed) Base URL: http://src.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 glob 7 import glob
8 import os 8 import os
9 import platform 9 import platform
10 import shutil 10 import shutil
(...skipping 3331 matching lines...) Expand 10 before | Expand all | Expand 10 after
3342 'tests/exception_test/nacl.scons', 3342 'tests/exception_test/nacl.scons',
3343 # Disabled by Brad Chen 4 Sep to try to green Chromium nacl_integrationt tests 3343 # Disabled by Brad Chen 4 Sep to try to green Chromium nacl_integrationt tests
3344 # 'tests/fault_injection/nacl.scons', 3344 # 'tests/fault_injection/nacl.scons',
3345 'tests/fib/nacl.scons', 3345 'tests/fib/nacl.scons',
3346 'tests/file/nacl.scons', 3346 'tests/file/nacl.scons',
3347 'tests/fixedfeaturecpu/nacl.scons', 3347 'tests/fixedfeaturecpu/nacl.scons',
3348 'tests/gc_instrumentation/nacl.scons', 3348 'tests/gc_instrumentation/nacl.scons',
3349 'tests/glibc_file64_test/nacl.scons', 3349 'tests/glibc_file64_test/nacl.scons',
3350 'tests/glibc_static_test/nacl.scons', 3350 'tests/glibc_static_test/nacl.scons',
3351 'tests/glibc_syscall_wrappers/nacl.scons', 3351 'tests/glibc_syscall_wrappers/nacl.scons',
3352 'tests/glibc_socket_wrappers/nacl.scons',
3352 'tests/hello_world/nacl.scons', 3353 'tests/hello_world/nacl.scons',
3353 'tests/infoleak/nacl.scons', 3354 'tests/infoleak/nacl.scons',
3354 'tests/libc_free_hello_world/nacl.scons', 3355 'tests/libc_free_hello_world/nacl.scons',
3355 'tests/longjmp/nacl.scons', 3356 'tests/longjmp/nacl.scons',
3356 'tests/loop/nacl.scons', 3357 'tests/loop/nacl.scons',
3357 'tests/mandel/nacl.scons', 3358 'tests/mandel/nacl.scons',
3358 'tests/manifest_file/nacl.scons', 3359 'tests/manifest_file/nacl.scons',
3359 'tests/math/nacl.scons', 3360 'tests/math/nacl.scons',
3360 'tests/memcheck_test/nacl.scons', 3361 'tests/memcheck_test/nacl.scons',
3361 'tests/mmap/nacl.scons', 3362 'tests/mmap/nacl.scons',
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after
3942 nacl_env.ValidateSdk() 3943 nacl_env.ValidateSdk()
3943 3944
3944 if BROKEN_TEST_COUNT > 0: 3945 if BROKEN_TEST_COUNT > 0:
3945 msg = "There are %d broken tests." % BROKEN_TEST_COUNT 3946 msg = "There are %d broken tests." % BROKEN_TEST_COUNT
3946 if GetOption('brief_comstr'): 3947 if GetOption('brief_comstr'):
3947 msg += " Add --verbose to the command line for more information." 3948 msg += " Add --verbose to the command line for more information."
3948 print msg 3949 print msg
3949 3950
3950 # separate warnings from actual build output 3951 # separate warnings from actual build output
3951 Banner('B U I L D - O U T P U T:') 3952 Banner('B U I L D - O U T P U T:')
OLDNEW
« no previous file with comments | « no previous file | tests/glibc_socket_wrappers/irt_syscalls.h » ('j') | tests/glibc_socket_wrappers/nacl_stat.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698