| 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', 'require'], | 5 define(['dart_sdk', 'async_helper', 'expect', 'unittest', 'require'], |
| 6 function(dart_sdk, async_helper, expect, unittest, require) { | 6 function(dart_sdk, async_helper, expect, 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 let minitest = expect.minitest; | 10 let minitest = expect.minitest; |
| (...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 }, | 529 }, |
| 530 | 530 |
| 531 'lib/math': { | 531 'lib/math': { |
| 532 // TODO(het): triage | 532 // TODO(het): triage |
| 533 'double_pow_test': skip_fail, | 533 'double_pow_test': skip_fail, |
| 534 'low_test': skip_fail, | 534 'low_test': skip_fail, |
| 535 'math_test': skip_fail, | 535 'math_test': skip_fail, |
| 536 'math2_test': skip_fail, | 536 'math2_test': skip_fail, |
| 537 'pi_test': skip_timeout, | 537 'pi_test': skip_timeout, |
| 538 'random_big_test': skip_fail, | 538 'random_big_test': skip_fail, |
| 539 'rectangle_test': fail, // TODO(rnystrom): #27551 | |
| 540 }, | 539 }, |
| 541 | 540 |
| 542 'lib/typed_data': { | 541 'lib/typed_data': { |
| 543 // No bigint or int64 support | 542 // No bigint or int64 support |
| 544 'int32x4_bigint_test': skip_fail, | 543 'int32x4_bigint_test': skip_fail, |
| 545 'int64_list_load_store_test': skip_fail, | 544 'int64_list_load_store_test': skip_fail, |
| 546 'typed_data_hierarchy_int64_test': skip_fail, | 545 'typed_data_hierarchy_int64_test': skip_fail, |
| 547 'typed_data_list_test': fail, | 546 'typed_data_list_test': fail, |
| 548 }, | 547 }, |
| 549 | 548 |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 844 | 843 |
| 845 for (let action of unittest_tests) { | 844 for (let action of unittest_tests) { |
| 846 try { | 845 try { |
| 847 action(); | 846 action(); |
| 848 } catch (e) { | 847 } catch (e) { |
| 849 console.error("Caught error tying to setup test:", e); | 848 console.error("Caught error tying to setup test:", e); |
| 850 } | 849 } |
| 851 } | 850 } |
| 852 }); | 851 }); |
| 853 }); | 852 }); |
| OLD | NEW |