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

Side by Side Diff: tests/glibc_socket_wrappers/nacl.scons

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
(Empty)
1 # -*- python -*-
2 # Copyright 2012 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can
4 # be found in the LICENSE file.
5
6 Import('env')
7
8 # There is no sock64 in newlib
9 if not env.Bit('nacl_glibc'):
10 Return()
11
12 test_sock_nexe = env.ComponentProgram('test_sock', 'test_sock.c')
13
14 test_sock = env.CommandSelLdrTestNacl(
15 'test_sock.out',
16 test_sock_nexe,
17 args=[env.File('test_sock_data')])
18
19 env.AddNodeToTestSuite(test_sock, ['small_tests'], 'run_sock_test')
20
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698