| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 'compile_time_constant10_test_none_multi': fail, | 94 'compile_time_constant10_test_none_multi': fail, |
| 95 'compile_time_constant_a_test': fail, | 95 'compile_time_constant_a_test': fail, |
| 96 'compile_time_constant_b_test': fail, | 96 'compile_time_constant_b_test': fail, |
| 97 'compile_time_constant_d_test': fail, | 97 'compile_time_constant_d_test': fail, |
| 98 'compile_time_constant_k_test_none_multi': fail, | 98 'compile_time_constant_k_test_none_multi': fail, |
| 99 'compile_time_constant_o_test_none_multi': fail, | 99 'compile_time_constant_o_test_none_multi': fail, |
| 100 'const_evaluation_test_01_multi': fail, | 100 'const_evaluation_test_01_multi': fail, |
| 101 'const_switch_test_02_multi': fail, | 101 'const_switch_test_02_multi': fail, |
| 102 'const_switch_test_04_multi': fail, | 102 'const_switch_test_04_multi': fail, |
| 103 'constructor12_test': fail, | 103 'constructor12_test': fail, |
| 104 'covariant_subtyping_unsafe_call2_test': fail, |
| 104 'cyclic_type2_test': fail, | 105 'cyclic_type2_test': fail, |
| 105 'cyclic_type_test_00_multi': fail, | 106 'cyclic_type_test_00_multi': fail, |
| 106 'cyclic_type_test_01_multi': fail, | 107 'cyclic_type_test_01_multi': fail, |
| 107 'cyclic_type_test_02_multi': fail, | 108 'cyclic_type_test_02_multi': fail, |
| 108 'cyclic_type_test_03_multi': fail, | 109 'cyclic_type_test_03_multi': fail, |
| 109 'cyclic_type_test_04_multi': fail, | 110 'cyclic_type_test_04_multi': fail, |
| 110 | 111 |
| 111 // Deferred libraries are not actually deferred. These tests all test | 112 // Deferred libraries are not actually deferred. These tests all test |
| 112 // that synchronous access to the library fails. | 113 // that synchronous access to the library fails. |
| 113 'deferred_call_empty_before_load_test': fail, | 114 'deferred_call_empty_before_load_test': fail, |
| (...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 875 | 876 |
| 876 for (let action of unittest_tests) { | 877 for (let action of unittest_tests) { |
| 877 try { | 878 try { |
| 878 action(); | 879 action(); |
| 879 } catch (e) { | 880 } catch (e) { |
| 880 console.error("Caught error tying to setup test:", e); | 881 console.error("Caught error tying to setup test:", e); |
| 881 } | 882 } |
| 882 } | 883 } |
| 883 }); | 884 }); |
| 884 }); | 885 }); |
| OLD | NEW |