| 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 (function() { | 5 (function() { |
| 6 'use strict'; | 6 'use strict'; |
| 7 | 7 |
| 8 let dart_sdk = dart_library.import('dart_sdk'); | 8 let dart_sdk = dart_library.import('dart_sdk'); |
| 9 dart_sdk._isolate_helper.startRootIsolate(function() {}, []); | 9 dart_sdk._isolate_helper.startRootIsolate(function() {}, []); |
| 10 let async_helper = dart_library.import('async_helper').async_helper; | 10 let async_helper = dart_library.import('async_helper').async_helper; |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 'mixin_mixin_test': skip_fail, | 252 'mixin_mixin_test': skip_fail, |
| 253 'mixin_regress_13688_test': skip_fail, | 253 'mixin_regress_13688_test': skip_fail, |
| 254 'mixin_type_parameter1_test': skip_fail, | 254 'mixin_type_parameter1_test': skip_fail, |
| 255 'mixin_type_parameter2_test': skip_fail, | 255 'mixin_type_parameter2_test': skip_fail, |
| 256 'mixin_type_parameter3_test': skip_fail, | 256 'mixin_type_parameter3_test': skip_fail, |
| 257 'modulo_test': fail, | 257 'modulo_test': fail, |
| 258 'named_parameter_clash_test': skip_fail, | 258 'named_parameter_clash_test': skip_fail, |
| 259 'nan_identical_test': skip_fail, | 259 'nan_identical_test': skip_fail, |
| 260 'nested_switch_label_test': skip_fail, | 260 'nested_switch_label_test': skip_fail, |
| 261 'no_such_method_empty_selector_test': fail, | 261 'no_such_method_empty_selector_test': fail, |
| 262 'no_such_method_subtype_test': fail, | |
| 263 'number_identifier_test_05_multi': skip_fail, | 262 'number_identifier_test_05_multi': skip_fail, |
| 264 'number_identity2_test': skip_fail, | 263 'number_identity2_test': skip_fail, |
| 265 'numbers_test': skip_fail, | 264 'numbers_test': skip_fail, |
| 266 'optimized_hoisting_checked_mode_assert_test': skip_fail, | 265 'optimized_hoisting_checked_mode_assert_test': skip_fail, |
| 267 'redirecting_factory_reflection_test': skip_fail, | 266 'redirecting_factory_reflection_test': skip_fail, |
| 268 'regress_13462_0_test': skip_fail, | 267 'regress_13462_0_test': skip_fail, |
| 269 'regress_13462_1_test': skip_fail, | 268 'regress_13462_1_test': skip_fail, |
| 270 'regress_14105_test': skip_fail, | 269 'regress_14105_test': skip_fail, |
| 271 'regress_16640_test': skip_fail, | 270 'regress_16640_test': skip_fail, |
| 272 'regress_18535_test': skip_fail, | 271 'regress_18535_test': skip_fail, |
| (...skipping 2632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2905 | 2904 |
| 2906 for (let action of unittest_tests) { | 2905 for (let action of unittest_tests) { |
| 2907 try { | 2906 try { |
| 2908 action(); | 2907 action(); |
| 2909 } catch (e) { | 2908 } catch (e) { |
| 2910 console.error("Caught error tying to setup test:", e); | 2909 console.error("Caught error tying to setup test:", e); |
| 2911 } | 2910 } |
| 2912 } | 2911 } |
| 2913 }); | 2912 }); |
| 2914 })(); | 2913 })(); |
| OLD | NEW |