| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 'double_int_to_string_test': fail, | 124 'double_int_to_string_test': fail, |
| 125 'dynamic_test': fail, | 125 'dynamic_test': fail, |
| 126 'exception_test': fail, | 126 'exception_test': fail, |
| 127 'execute_finally6_test': fail, | 127 'execute_finally6_test': fail, |
| 128 'expect_test': fail, | 128 'expect_test': fail, |
| 129 'extends_test_lib': fail, | 129 'extends_test_lib': fail, |
| 130 'external_test_10_multi': fail, | 130 'external_test_10_multi': fail, |
| 131 'external_test_13_multi': fail, | 131 'external_test_13_multi': fail, |
| 132 'external_test_20_multi': fail, | 132 'external_test_20_multi': fail, |
| 133 'f_bounded_quantification3_test': fail, | 133 'f_bounded_quantification3_test': fail, |
| 134 'fast_method_extraction_test': fail, | |
| 135 'field_increment_bailout_test': fail, | 134 'field_increment_bailout_test': fail, |
| 136 'field_optimization3_test': fail, | 135 'field_optimization3_test': fail, |
| 137 'final_syntax_test_08_multi': fail, | 136 'final_syntax_test_08_multi': fail, |
| 138 'first_class_types_test': fail, | 137 'first_class_types_test': fail, |
| 139 'for_variable_capture_test': chrome_fail, | 138 'for_variable_capture_test': chrome_fail, |
| 140 'function_subtype0_test': fail, | 139 'function_subtype0_test': fail, |
| 141 'function_subtype1_test': fail, | 140 'function_subtype1_test': fail, |
| 142 'function_subtype2_test': fail, | 141 'function_subtype2_test': fail, |
| 143 'function_subtype3_test': fail, | 142 'function_subtype3_test': fail, |
| 144 'function_subtype_bound_closure0_test': fail, | 143 'function_subtype_bound_closure0_test': fail, |
| (...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 879 | 878 |
| 880 for (let action of unittest_tests) { | 879 for (let action of unittest_tests) { |
| 881 try { | 880 try { |
| 882 action(); | 881 action(); |
| 883 } catch (e) { | 882 } catch (e) { |
| 884 console.error("Caught error tying to setup test:", e); | 883 console.error("Caught error tying to setup test:", e); |
| 885 } | 884 } |
| 886 } | 885 } |
| 887 }); | 886 }); |
| 888 }); | 887 }); |
| OLD | NEW |