| 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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 'string_interpolate_null_test': skip_fail, | 283 'string_interpolate_null_test': skip_fail, |
| 284 'super_operator_index3_test': skip_fail, | 284 'super_operator_index3_test': skip_fail, |
| 285 'super_operator_index4_test': skip_fail, | 285 'super_operator_index4_test': skip_fail, |
| 286 'switch_label2_test': skip_fail, | 286 'switch_label2_test': skip_fail, |
| 287 'switch_label_test': skip_fail, | 287 'switch_label_test': skip_fail, |
| 288 'switch_try_catch_test': skip_fail, | 288 'switch_try_catch_test': skip_fail, |
| 289 'sync_generator1_test_none_multi': skip_fail, | 289 'sync_generator1_test_none_multi': skip_fail, |
| 290 'throwing_lazy_variable_test': skip_fail, | 290 'throwing_lazy_variable_test': skip_fail, |
| 291 'top_level_non_prefixed_library_test': skip_fail, | 291 'top_level_non_prefixed_library_test': skip_fail, |
| 292 'truncdiv_test': fail, // did not throw | 292 'truncdiv_test': fail, // did not throw |
| 293 'type_literal_test': firefox_fail, | |
| 294 'type_variable_nested_test': skip_fail, // unsound is-check | 293 'type_variable_nested_test': skip_fail, // unsound is-check |
| 295 'type_variable_typedef_test': skip_fail, // unsound is-check | 294 'type_variable_typedef_test': skip_fail, // unsound is-check |
| 296 | 295 |
| 297 'bit_operations_test_01_multi': skip_fail, | 296 'bit_operations_test_01_multi': skip_fail, |
| 298 'bit_operations_test_02_multi': skip_fail, | 297 'bit_operations_test_02_multi': skip_fail, |
| 299 'bit_operations_test_03_multi': skip_fail, | 298 'bit_operations_test_03_multi': skip_fail, |
| 300 'bit_operations_test_04_multi': skip_fail, | 299 'bit_operations_test_04_multi': skip_fail, |
| 301 'bool_condition_check_test_01_multi': skip_fail, | 300 'bool_condition_check_test_01_multi': skip_fail, |
| 302 'deferred_constraints_constants_test_none_multi': skip_fail, | 301 'deferred_constraints_constants_test_none_multi': skip_fail, |
| 303 'deferred_constraints_constants_test_reference_after_load_multi': skip_fai
l, | 302 'deferred_constraints_constants_test_reference_after_load_multi': skip_fai
l, |
| (...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 844 | 843 |
| 845 for (let action of unittest_tests) { | 844 for (let action of unittest_tests) { |
| 846 try { | 845 try { |
| 847 action(); | 846 action(); |
| 848 } catch (e) { | 847 } catch (e) { |
| 849 console.error("Caught error tying to setup test:", e); | 848 console.error("Caught error tying to setup test:", e); |
| 850 } | 849 } |
| 851 } | 850 } |
| 852 }); | 851 }); |
| 853 }); | 852 }); |
| OLD | NEW |