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 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
648 'wrapping_collections_test': ['unittest', 'skip', 'fail'], | 648 'wrapping_collections_test': ['unittest', 'skip', 'fail'], |
649 'xhr_cross_origin_test': ['unittest', 'skip', 'fail'], | 649 'xhr_cross_origin_test': ['unittest', 'skip', 'fail'], |
650 'xhr_test': ['unittest', 'skip', 'fail'], | 650 'xhr_test': ['unittest', 'skip', 'fail'], |
651 'xsltprocessor_test': ['unittest', 'skip', 'fail'], | 651 'xsltprocessor_test': ['unittest', 'skip', 'fail'], |
652 | 652 |
653 'js_typed_interop_default_arg_test_none_multi': ['unittest', 'skip', 'fail
'], | 653 'js_typed_interop_default_arg_test_none_multi': ['unittest', 'skip', 'fail
'], |
654 'js_typed_interop_default_arg_test_explicit_argument_multi': ['unittest',
'skip', 'fail'], | 654 'js_typed_interop_default_arg_test_explicit_argument_multi': ['unittest',
'skip', 'fail'], |
655 'js_typed_interop_default_arg_test_default_value_multi': ['unittest', 'ski
p', 'fail'] | 655 'js_typed_interop_default_arg_test_default_value_multi': ['unittest', 'ski
p', 'fail'] |
656 }, | 656 }, |
657 | 657 |
| 658 'lib/math': { |
| 659 // TODO(het): triage |
| 660 'double_pow_test': skip_fail, |
| 661 'low_test': skip_fail, |
| 662 'math_test': skip_fail, |
| 663 'math2_test': skip_fail, |
| 664 'random_big_test': skip_fail, |
| 665 'point_test': ['unittest', 'skip', 'fail'], |
| 666 'rectangle_test': ['unittest', 'skip', 'fail'], |
| 667 }, |
| 668 |
658 'lib/typed_data': { | 669 'lib/typed_data': { |
659 // No bigint or int64 support | 670 // No bigint or int64 support |
660 'int32x4_bigint_test': skip_fail, | 671 'int32x4_bigint_test': skip_fail, |
661 'int64_list_load_store_test': skip_fail, | 672 'int64_list_load_store_test': skip_fail, |
662 'typed_data_hierarchy_int64_test': skip_fail, | 673 'typed_data_hierarchy_int64_test': skip_fail, |
663 'typed_data_list_test': fail, | 674 'typed_data_list_test': fail, |
664 | 675 |
665 // TODO(vsm): List.toString is different in DDC | 676 // TODO(vsm): List.toString is different in DDC |
666 // https://github.com/dart-lang/dev_compiler/issues/445 | 677 // https://github.com/dart-lang/dev_compiler/issues/445 |
667 'setRange_1_test': skip_fail, | 678 'setRange_1_test': skip_fail, |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
797 | 808 |
798 for (let action of unittest_tests) { | 809 for (let action of unittest_tests) { |
799 try { | 810 try { |
800 action(); | 811 action(); |
801 } catch (e) { | 812 } catch (e) { |
802 console.error("Caught error tying to setup test:", e); | 813 console.error("Caught error tying to setup test:", e); |
803 } | 814 } |
804 } | 815 } |
805 }); | 816 }); |
806 })(); | 817 })(); |
OLD | NEW |