OLD | NEW |
1 # -*- python -*- | 1 # -*- python -*- |
2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2011 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 | 54 |
55 # ---------------------------------------------------------- | 55 # ---------------------------------------------------------- |
56 # TODO(robertm): this library is too big and needs to be split up | 56 # TODO(robertm): this library is too big and needs to be split up |
57 # for easier unit testing | 57 # for easier unit testing |
58 ldr_inputs = [ | 58 ldr_inputs = [ |
59 'dyn_array.c', | 59 'dyn_array.c', |
60 'elf_util.c', | 60 'elf_util.c', |
61 'nacl_all_modules.c', | 61 'nacl_all_modules.c', |
62 'nacl_app_thread.c', | 62 'nacl_app_thread.c', |
63 'nacl_desc_effector_ldr.c', | 63 'nacl_desc_effector_ldr.c', |
| 64 'nacl_desc_postmessage.c', |
64 'nacl_globals.c', | 65 'nacl_globals.c', |
65 'nacl_kern_services.c', | 66 'nacl_kern_services.c', |
66 'nacl_memory_object.c', | 67 'nacl_memory_object.c', |
| 68 'nacl_resource.c', |
67 'nacl_signal_common.c', | 69 'nacl_signal_common.c', |
68 'nacl_stack_safety.c', | 70 'nacl_stack_safety.c', |
69 'nacl_syscall_common.c', | 71 'nacl_syscall_common.c', |
70 GENERATED + '/nacl_syscall_handlers.c', | 72 GENERATED + '/nacl_syscall_handlers.c', |
71 'nacl_syscall_hook.c', | 73 'nacl_syscall_hook.c', |
72 'nacl_text.c', | 74 'nacl_text.c', |
73 'nacl_valgrind_hooks.c', | 75 'nacl_valgrind_hooks.c', |
74 'name_service/default_name_service.c', | 76 'name_service/default_name_service.c', |
75 'name_service/name_service.c', | 77 'name_service/name_service.c', |
76 'sel_addrspace.c', | 78 'sel_addrspace.c', |
(...skipping 862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
939 expected_exit_status = 'sigabrt' | 941 expected_exit_status = 'sigabrt' |
940 node = env.CommandTest( | 942 node = env.CommandTest( |
941 'sel_ldr_thread_death_test.out', | 943 'sel_ldr_thread_death_test.out', |
942 command=[sel_ldr_thread_death_test_exe], | 944 command=[sel_ldr_thread_death_test_exe], |
943 exit_status=expected_exit_status) | 945 exit_status=expected_exit_status) |
944 | 946 |
945 # TODO(tuduce): Make it work on windows. | 947 # TODO(tuduce): Make it work on windows. |
946 env.AddNodeToTestSuite(node, ['medium_tests'], | 948 env.AddNodeToTestSuite(node, ['medium_tests'], |
947 'run_sel_ldr_thread_death_test', | 949 'run_sel_ldr_thread_death_test', |
948 is_broken=env.Bit('windows')) | 950 is_broken=env.Bit('windows')) |
OLD | NEW |