OLD | NEW |
1 # Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file | 1 # Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file |
2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
3 # BSD-style license that can be found in the LICENSE.md file. | 3 # BSD-style license that can be found in the LICENSE.md file. |
4 | 4 |
5 self/testAlwaysFails: Fail, OK # This is a test of this suite, failure is expect
ed. | 5 self/testAlwaysFails: Fail, OK # This is a test of this suite, failure is expect
ed. |
6 zone_helper/testAlwaysFails: Fail, OK # This is a test of this suite, failure is
expected. | 6 zone_helper/testAlwaysFails: Fail, OK # This is a test of this suite, failure is
expected. |
7 self/testNeverCompletes: Timeout # This is a test of this suite, timeout is expe
cted. | 7 self/testNeverCompletes: Timeout # This is a test of this suite, timeout is expe
cted. |
8 multiprogram_tests/should_fail: Fail, OK # This is a test of this suite, failure
is expected. | 8 multiprogram_tests/should_fail: Fail, OK # This is a test of this suite, failure
is expected. |
9 | 9 |
10 # Unsupported debugger features | 10 # Unsupported debugger features |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 incremental/*/lazy_static: IncrementalCompilationFailed | 132 incremental/*/lazy_static: IncrementalCompilationFailed |
133 incremental/*/local_function_closure: IncrementalCompilationFailed | 133 incremental/*/local_function_closure: IncrementalCompilationFailed |
134 incremental/*/main_signature_change: IncrementalCompilationFailed | 134 incremental/*/main_signature_change: IncrementalCompilationFailed |
135 incremental/*/remove_compound_instance_field: IncrementalCompilationFailed | 135 incremental/*/remove_compound_instance_field: IncrementalCompilationFailed |
136 incremental/*/remove_named_mixin_application: IncrementalCompilationFailed | 136 incremental/*/remove_named_mixin_application: IncrementalCompilationFailed |
137 incremental/*/remove_unused_enum_class: IncrementalCompilationFailed | 137 incremental/*/remove_unused_enum_class: IncrementalCompilationFailed |
138 incremental/*/static_field_to_instance_field: IncrementalCompilationFailed | 138 incremental/*/static_field_to_instance_field: IncrementalCompilationFailed |
139 incremental/*/super_is_parameter: IncrementalCompilationFailed | 139 incremental/*/super_is_parameter: IncrementalCompilationFailed |
140 incremental/*/unchanged_named_mixin_application: IncrementalCompilationFailed | 140 incremental/*/unchanged_named_mixin_application: IncrementalCompilationFailed |
141 | 141 |
142 # Incorrectly failing servicec tests | |
143 servicec/bad_field_4: Fail # Issue 293 | |
144 servicec/bad_field_8: Fail # Issue 293 | |
145 servicec/bad_formal_1: Fail # Issue 294 | |
146 servicec/bad_formal_2: Fail # Issue 294 | |
147 servicec/bad_formal_3: Fail # Issue 294 | |
148 servicec/bad_function_7: Fail # Issue 292 | |
149 servicec/bad_function_8: Fail # Issue 292 | |
150 servicec/bad_list_type_2: Fail # Issue 295 | |
151 servicec/bad_list_type_3: Fail # Issue 295 | |
152 servicec/bad_list_type_4: Fail # Issue 295 | |
153 servicec/bad_list_type_5: Fail # Issue 295 | |
154 | |
155 test_vm_connection/testCloseImmediately: Skip # Fails and prints during run. | 142 test_vm_connection/testCloseImmediately: Skip # Fails and prints during run. |
156 test_vm_connection/testCloseAfterCommitChanges: Fail | 143 test_vm_connection/testCloseAfterCommitChanges: Fail |
157 test_vm_connection/testCloseAfterProcessRun: Fail | 144 test_vm_connection/testCloseAfterProcessRun: Fail |
158 | 145 |
159 # Old servicec backend fails on these tests; Issue 235 | |
160 servicec/good_type_parameter_1: Fail | |
161 | |
162 # Skip slow service performance test | |
163 service_tests/performance_java: Skip | |
164 | |
165 # Only run java service tests on non-asan x64 linux. | |
166 [ $arch != x64 || $system != linux || $asan ] | |
167 | |
168 service_tests/*_java: Skip | |
169 | |
170 [ $arch != ia32 && $arch != x64 ] | |
171 | |
172 service_tests/*: Skip | |
173 | |
174 [ $arch == xarm ] | 146 [ $arch == xarm ] |
175 | 147 |
176 mdns_tests/*: Skip # The native extension is not compiled for ARM. | 148 mdns_tests/*: Skip # The native extension is not compiled for ARM. |
177 power_management_tests/*: Skip # The native extension is not compiled for ARM. | 149 power_management_tests/*: Skip # The native extension is not compiled for ARM. |
178 flash_sd_card_tests/*: Skip # The native extension is not compiled for ARM. | 150 flash_sd_card_tests/*: Skip # The native extension is not compiled for ARM. |
179 sdk_service_tests/*: Skip # The native extension is not compiled for ARM. | 151 sdk_service_tests/*: Skip # The native extension is not compiled for ARM. |
180 | 152 |
181 incremental/experimental/program_gc_with_processes: Pass, Fail # Issue 389. | 153 incremental/experimental/program_gc_with_processes: Pass, Fail # Issue 389. |
182 | 154 |
183 [ $arch == x64 && $asan] | |
184 service_tests/simple_todo: Pass, Fail # Issue https://github.com/dartino/sdk/iss
ues/57 | |
185 | |
186 [ $arch == x64 ] | 155 [ $arch == x64 ] |
187 incremental/experimental/add_field_and_remove_subclass: Pass, Fail # Issue 460 | 156 incremental/experimental/add_field_and_remove_subclass: Pass, Fail # Issue 460 |
OLD | NEW |