| Index: tests/imc_sockets/nacl.scons
|
| ===================================================================
|
| --- tests/imc_sockets/nacl.scons (revision 5777)
|
| +++ tests/imc_sockets/nacl.scons (working copy)
|
| @@ -13,10 +13,11 @@
|
| else:
|
| test_args = []
|
|
|
| -env.ComponentProgram('socket_transfer_test.nexe', 'socket_transfer_test.c',
|
| - EXTRA_LIBS=['imc_syscalls', 'pthread'])
|
| +nexe = env.ComponentProgram('socket_transfer_test', 'socket_transfer_test.c',
|
| + EXTRA_LIBS=['imc_syscalls', 'pthread'])
|
|
|
| node = env.CommandSelLdrTestNacl(
|
| 'socket_transfer_test.out',
|
| - command=[env.File('socket_transfer_test.nexe')] + test_args)
|
| + nexe,
|
| + args=test_args)
|
| env.AddNodeToTestSuite(node, ['small_tests'], 'run_socket_transfer_test')
|
|
|