| 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', 'unittest', 'require'], | 5 define(['dart_sdk', 'async_helper', 'unittest', 'require'], |
| 6 function(dart_sdk, async_helper, unittest, require) { | 6 function(dart_sdk, async_helper, unittest, require) { |
| 7 'use strict'; | 7 'use strict'; |
| 8 | 8 |
| 9 async_helper = async_helper.async_helper; | 9 async_helper = async_helper.async_helper; |
| 10 | 10 |
| (...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 'js_typed_interop_default_arg_test_explicit_argument_multi': ['unittest',
'skip', 'fail'], | 568 'js_typed_interop_default_arg_test_explicit_argument_multi': ['unittest',
'skip', 'fail'], |
| 569 'js_typed_interop_default_arg_test_default_value_multi': ['unittest', 'ski
p', 'fail'] | 569 'js_typed_interop_default_arg_test_default_value_multi': ['unittest', 'ski
p', 'fail'] |
| 570 }, | 570 }, |
| 571 | 571 |
| 572 'lib/math': { | 572 'lib/math': { |
| 573 // TODO(het): triage | 573 // TODO(het): triage |
| 574 'double_pow_test': skip_fail, | 574 'double_pow_test': skip_fail, |
| 575 'low_test': skip_fail, | 575 'low_test': skip_fail, |
| 576 'math_test': skip_fail, | 576 'math_test': skip_fail, |
| 577 'math2_test': skip_fail, | 577 'math2_test': skip_fail, |
| 578 'pi_test': skip_timeout, |
| 579 'point_test': ['unittest', 'skip', 'fail'], |
| 578 'random_big_test': skip_fail, | 580 'random_big_test': skip_fail, |
| 579 'point_test': ['unittest', 'skip', 'fail'], | |
| 580 'rectangle_test': 'unittest', | 581 'rectangle_test': 'unittest', |
| 581 }, | 582 }, |
| 582 | 583 |
| 583 'lib/typed_data': { | 584 'lib/typed_data': { |
| 584 // No bigint or int64 support | 585 // No bigint or int64 support |
| 585 'int32x4_bigint_test': skip_fail, | 586 'int32x4_bigint_test': skip_fail, |
| 586 'int64_list_load_store_test': skip_fail, | 587 'int64_list_load_store_test': skip_fail, |
| 587 'typed_data_hierarchy_int64_test': skip_fail, | 588 'typed_data_hierarchy_int64_test': skip_fail, |
| 588 'typed_data_list_test': fail, | 589 'typed_data_list_test': fail, |
| 589 }, | 590 }, |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 874 | 875 |
| 875 for (let action of unittest_tests) { | 876 for (let action of unittest_tests) { |
| 876 try { | 877 try { |
| 877 action(); | 878 action(); |
| 878 } catch (e) { | 879 } catch (e) { |
| 879 console.error("Caught error tying to setup test:", e); | 880 console.error("Caught error tying to setup test:", e); |
| 880 } | 881 } |
| 881 } | 882 } |
| 882 }); | 883 }); |
| 883 }); | 884 }); |
| OLD | NEW |