OLD | NEW |
(Empty) | |
| 1 # -*- python -*- |
| 2 # Copyright 2008 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 |
OLD | NEW |