| 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 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 581 'regress_194523002_test': ['unittest', 'skip', 'fail'], | 581 'regress_194523002_test': ['unittest', 'skip', 'fail'], |
| 582 }, | 582 }, |
| 583 | 583 |
| 584 'lib/math': { | 584 'lib/math': { |
| 585 // TODO(het): triage | 585 // TODO(het): triage |
| 586 'double_pow_test': skip_fail, | 586 'double_pow_test': skip_fail, |
| 587 'low_test': skip_fail, | 587 'low_test': skip_fail, |
| 588 'math_test': skip_fail, | 588 'math_test': skip_fail, |
| 589 'math2_test': skip_fail, | 589 'math2_test': skip_fail, |
| 590 'pi_test': skip_timeout, | 590 'pi_test': skip_timeout, |
| 591 'point_test': ['unittest', 'skip', 'fail'], | |
| 592 'random_big_test': skip_fail, | 591 'random_big_test': skip_fail, |
| 593 'rectangle_test': 'unittest', | 592 'rectangle_test': fail, // TODO(rnystrom): #27551 |
| 594 }, | 593 }, |
| 595 | 594 |
| 596 'lib/typed_data': { | 595 'lib/typed_data': { |
| 597 // No bigint or int64 support | 596 // No bigint or int64 support |
| 598 'int32x4_bigint_test': skip_fail, | 597 'int32x4_bigint_test': skip_fail, |
| 599 'int64_list_load_store_test': skip_fail, | 598 'int64_list_load_store_test': skip_fail, |
| 600 'typed_data_hierarchy_int64_test': skip_fail, | 599 'typed_data_hierarchy_int64_test': skip_fail, |
| 601 'typed_data_list_test': fail, | 600 'typed_data_list_test': fail, |
| 602 }, | 601 }, |
| 603 | 602 |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 892 | 891 |
| 893 for (let action of unittest_tests) { | 892 for (let action of unittest_tests) { |
| 894 try { | 893 try { |
| 895 action(); | 894 action(); |
| 896 } catch (e) { | 895 } catch (e) { |
| 897 console.error("Caught error tying to setup test:", e); | 896 console.error("Caught error tying to setup test:", e); |
| 898 } | 897 } |
| 899 } | 898 } |
| 900 }); | 899 }); |
| 901 }); | 900 }); |
| OLD | NEW |