| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart 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 file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 define(['dart_sdk', 'async_helper', 'expect', 'unittest', 'is', 'require'], | 5 define(['dart_sdk', 'async_helper', 'expect', 'unittest', 'is', 'require'], |
| 6 function(dart_sdk, async_helper, expect, unittest, is, require) { | 6 function(dart_sdk, async_helper, expect, unittest, is, require) { |
| 7 'use strict'; | 7 'use strict'; |
| 8 | 8 |
| 9 async_helper = async_helper.async_helper; | 9 async_helper = async_helper.async_helper; |
| 10 let minitest = expect.minitest; | 10 let minitest = expect.minitest; |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 'function_type_alias3_test': fail, | 188 'function_type_alias3_test': fail, |
| 189 'function_type_alias4_test': fail, | 189 'function_type_alias4_test': fail, |
| 190 'function_type_alias6_test_none_multi': fail, | 190 'function_type_alias6_test_none_multi': fail, |
| 191 'generic_instanceof_test': fail, // runtime strong mode reject | 191 'generic_instanceof_test': fail, // runtime strong mode reject |
| 192 'generic_instanceof2_test': fail, | 192 'generic_instanceof2_test': fail, |
| 193 'generic_is_check_test': fail, | 193 'generic_is_check_test': fail, |
| 194 'generic_methods_dynamic_test_02_multi': fail, | 194 'generic_methods_dynamic_test_02_multi': fail, |
| 195 'generic_methods_dynamic_test_04_multi': fail, | 195 'generic_methods_dynamic_test_04_multi': fail, |
| 196 'generic_methods_recursive_bound_test_03_multi': fail, | 196 'generic_methods_recursive_bound_test_03_multi': fail, |
| 197 'generic_methods_simple_as_expression_test_02_multi': fail, | 197 'generic_methods_simple_as_expression_test_02_multi': fail, |
| 198 |
| 199 'generic_methods_generic_class_tearoff_test': fail, // Strong mode is-chec
k failure |
| 200 'generic_methods_tearoff_specialization_test': fail, // Strong mode is-che
ck failure |
| 201 'generic_methods_named_parameters_test': fail, // Strong mode is-check fai
lure |
| 202 'generic_methods_optional_parameters_test': fail, // Strong mode is-check
failure |
| 203 |
| 198 'getter_closure_execution_order_test': fail, | 204 'getter_closure_execution_order_test': fail, |
| 199 'gc_test': 'slow', | 205 'gc_test': 'slow', |
| 200 'identical_closure2_test': fail, | 206 'identical_closure2_test': fail, |
| 201 'infinite_switch_label_test': fail, | 207 'infinite_switch_label_test': fail, |
| 202 'infinity_test': fail, | 208 'infinity_test': fail, |
| 203 'initializing_formal_final_test': fail, | 209 'initializing_formal_final_test': fail, |
| 204 'instance_creation_in_function_annotation_test': fail, | 210 'instance_creation_in_function_annotation_test': fail, |
| 205 'instanceof2_test': fail, | 211 'instanceof2_test': fail, |
| 206 'instanceof4_test_01_multi': fail, | 212 'instanceof4_test_01_multi': fail, |
| 207 'instanceof4_test_none_multi': fail, | 213 'instanceof4_test_none_multi': fail, |
| (...skipping 754 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 962 | 968 |
| 963 for (let action of unittest_tests) { | 969 for (let action of unittest_tests) { |
| 964 try { | 970 try { |
| 965 action(); | 971 action(); |
| 966 } catch (e) { | 972 } catch (e) { |
| 967 console.error("Caught error tying to setup test:", e); | 973 console.error("Caught error tying to setup test:", e); |
| 968 } | 974 } |
| 969 } | 975 } |
| 970 }); | 976 }); |
| 971 }); | 977 }); |
| OLD | NEW |