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 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
563 'wrapping_collections_test': ['unittest', 'skip', 'fail'], | 563 'wrapping_collections_test': ['unittest', 'skip', 'fail'], |
564 'xhr_cross_origin_test': ['unittest', 'skip', 'fail'], | 564 'xhr_cross_origin_test': ['unittest', 'skip', 'fail'], |
565 'xhr_test': ['unittest', 'skip', 'fail'], | 565 'xhr_test': ['unittest', 'skip', 'fail'], |
566 'xsltprocessor_test': ['unittest', 'skip', 'fail'], | 566 'xsltprocessor_test': ['unittest', 'skip', 'fail'], |
567 | 567 |
568 'js_typed_interop_default_arg_test_none_multi': ['unittest', 'skip', 'fail
'], | 568 'js_typed_interop_default_arg_test_none_multi': ['unittest', 'skip', 'fail
'], |
569 'js_typed_interop_default_arg_test_explicit_argument_multi': ['unittest',
'skip', 'fail'], | 569 'js_typed_interop_default_arg_test_explicit_argument_multi': ['unittest',
'skip', 'fail'], |
570 'js_typed_interop_default_arg_test_default_value_multi': ['unittest', 'ski
p', 'fail'] | 570 'js_typed_interop_default_arg_test_default_value_multi': ['unittest', 'ski
p', 'fail'] |
571 }, | 571 }, |
572 | 572 |
| 573 'lib/html/custom': { |
| 574 'attribute_changed_callback_test': ['unittest', 'skip', 'fail'], |
| 575 'constructor_calls_created_synchronously_test': ['unittest', 'skip', 'fail
'], |
| 576 'created_callback_test': ['unittest', 'skip', 'fail'], |
| 577 'document_register_basic_test': ['unittest', 'skip', 'fail'], |
| 578 'document_register_type_extensions_test': ['unittest', 'skip', 'fail'], |
| 579 'element_upgrade_test': ['unittest', 'skip', 'fail'], |
| 580 'entered_left_view_test': ['unittest', 'skip', 'fail'], |
| 581 'js_custom_test': ['unittest', 'skip', 'fail'], |
| 582 'mirrors_test': ['unittest', 'skip', 'fail'], |
| 583 'regress_194523002_test': ['unittest', 'skip', 'fail'], |
| 584 }, |
| 585 |
573 'lib/math': { | 586 'lib/math': { |
574 // TODO(het): triage | 587 // TODO(het): triage |
575 'double_pow_test': skip_fail, | 588 'double_pow_test': skip_fail, |
576 'low_test': skip_fail, | 589 'low_test': skip_fail, |
577 'math_test': skip_fail, | 590 'math_test': skip_fail, |
578 'math2_test': skip_fail, | 591 'math2_test': skip_fail, |
579 'pi_test': skip_timeout, | 592 'pi_test': skip_timeout, |
580 'point_test': ['unittest', 'skip', 'fail'], | 593 'point_test': ['unittest', 'skip', 'fail'], |
581 'random_big_test': skip_fail, | 594 'random_big_test': skip_fail, |
582 'rectangle_test': 'unittest', | 595 'rectangle_test': 'unittest', |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
872 | 885 |
873 for (let action of unittest_tests) { | 886 for (let action of unittest_tests) { |
874 try { | 887 try { |
875 action(); | 888 action(); |
876 } catch (e) { | 889 } catch (e) { |
877 console.error("Caught error tying to setup test:", e); | 890 console.error("Caught error tying to setup test:", e); |
878 } | 891 } |
879 } | 892 } |
880 }); | 893 }); |
881 }); | 894 }); |
OLD | NEW |