| 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 platform | 6 import platform |
| 7 import os | 7 import os |
| 8 | 8 |
| 9 Import('env') | 9 Import('env') |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 'nacl_reverse_quota_interface.c', | 41 'nacl_reverse_quota_interface.c', |
| 42 'nacl_runtime_host_interface.c', | 42 'nacl_runtime_host_interface.c', |
| 43 'nacl_secure_service.c', | 43 'nacl_secure_service.c', |
| 44 'nacl_signal_common.c', | 44 'nacl_signal_common.c', |
| 45 'nacl_stack_safety.c', | 45 'nacl_stack_safety.c', |
| 46 'nacl_syscall_common.c', | 46 'nacl_syscall_common.c', |
| 47 'nacl_syscall_hook.c', | 47 'nacl_syscall_hook.c', |
| 48 'nacl_syscall_list.c', | 48 'nacl_syscall_list.c', |
| 49 'nacl_text.c', | 49 'nacl_text.c', |
| 50 'nacl_valgrind_hooks.c', | 50 'nacl_valgrind_hooks.c', |
| 51 'name_service/name_service.c', | |
| 52 'sel_addrspace.c', | 51 'sel_addrspace.c', |
| 53 'sel_ldr.c', | 52 'sel_ldr.c', |
| 54 'sel_ldr_standard.c', | 53 'sel_ldr_standard.c', |
| 55 'sel_ldr_thread_interface.c', | 54 'sel_ldr_thread_interface.c', |
| 56 'sel_main_common.c', | 55 'sel_main_common.c', |
| 57 'sel_mem.c', | 56 'sel_mem.c', |
| 58 'sel_qualify.c', | 57 'sel_qualify.c', |
| 59 'sel_validate_image.c', | 58 'sel_validate_image.c', |
| 60 'sys_exception.c', | 59 'sys_exception.c', |
| 61 'sys_fdio.c', | 60 'sys_fdio.c', |
| (...skipping 948 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1010 is_broken=is_broken) | 1009 is_broken=is_broken) |
| 1011 | 1010 |
| 1012 dyn_array_test_exe = env.ComponentProgram('dyn_array_test', | 1011 dyn_array_test_exe = env.ComponentProgram('dyn_array_test', |
| 1013 ['dyn_array_test.c'], | 1012 ['dyn_array_test.c'], |
| 1014 EXTRA_LIBS=sel_ldr_libs) | 1013 EXTRA_LIBS=sel_ldr_libs) |
| 1015 | 1014 |
| 1016 node = env.CommandTest('dyn_array_test.out', | 1015 node = env.CommandTest('dyn_array_test.out', |
| 1017 command=[dyn_array_test_exe]) | 1016 command=[dyn_array_test_exe]) |
| 1018 | 1017 |
| 1019 env.AddNodeToTestSuite(node, ['small_tests'], 'run_dyn_array_test') | 1018 env.AddNodeToTestSuite(node, ['small_tests'], 'run_dyn_array_test') |
| OLD | NEW |