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 18 matching lines...) Expand all Loading... |
29 'arithmetic2_test': fail, | 29 'arithmetic2_test': fail, |
30 'assert_with_type_test_or_cast_test': skip_fail, | 30 'assert_with_type_test_or_cast_test': skip_fail, |
31 'assertion_test': skip_fail, | 31 'assertion_test': skip_fail, |
32 'async_await_test_none_multi': 'unittest', | 32 'async_await_test_none_multi': 'unittest', |
33 'async_star_await_pauses_test': skip_fail, | 33 'async_star_await_pauses_test': skip_fail, |
34 | 34 |
35 // TODO(jmesserly): figure out why this test is hanging. | 35 // TODO(jmesserly): figure out why this test is hanging. |
36 'async_star_cancel_and_throw_in_finally_test': skip_timeout, | 36 'async_star_cancel_and_throw_in_finally_test': skip_timeout, |
37 | 37 |
38 'async_star_cancel_while_paused_test': skip_fail, | 38 'async_star_cancel_while_paused_test': skip_fail, |
39 'async_star_regression_fisk_test': skip_fail, | |
40 | 39 |
41 // TODO(vsm): Re-enable. | 40 // TODO(vsm): Re-enable. |
42 // See https://github.com/dart-lang/dev_compiler/issues/456 | 41 // See https://github.com/dart-lang/dev_compiler/issues/456 |
43 'async_star_test_none_multi': ['unittest', 'skip', 'fail'], | 42 'async_star_test_none_multi': ['unittest', 'skip', 'fail'], |
44 'async_star_test_01_multi': ['unittest', 'skip', 'fail'], | 43 'async_star_test_01_multi': ['unittest', 'skip', 'fail'], |
45 'async_star_test_02_multi': ['unittest', 'skip', 'fail'], | 44 'async_star_test_02_multi': ['unittest', 'skip', 'fail'], |
46 'async_star_test_03_multi': ['unittest', 'skip', 'fail'], | 45 'async_star_test_03_multi': ['unittest', 'skip', 'fail'], |
47 'async_star_test_04_multi': ['unittest', 'skip', 'fail'], | 46 'async_star_test_04_multi': ['unittest', 'skip', 'fail'], |
48 'async_star_test_05_multi': ['unittest', 'skip', 'fail'], | 47 'async_star_test_05_multi': ['unittest', 'skip', 'fail'], |
49 | 48 |
50 'async_switch_test': skip_fail, | |
51 'asyncstar_throw_in_catch_test': skip_fail, | 49 'asyncstar_throw_in_catch_test': skip_fail, |
52 'await_future_test': skip_fail, | 50 'await_future_test': skip_fail, |
53 'bit_operations_test_none_multi': skip_fail, | 51 'bit_operations_test_none_multi': skip_fail, |
54 'bit_shift_test': skip_fail, | 52 'bit_shift_test': skip_fail, |
55 'bool_test': skip_fail, | 53 'bool_test': skip_fail, |
56 'bound_closure_equality_test': skip_fail, | 54 'bound_closure_equality_test': skip_fail, |
57 'branch_canonicalization_test': skip_fail, // JS bit operations truncate
to 32 bits. | 55 'branch_canonicalization_test': skip_fail, // JS bit operations truncate
to 32 bits. |
58 'call_closurization_test': skip_fail, | 56 'call_closurization_test': skip_fail, |
59 'call_function_apply_test': skip_fail, | 57 'call_function_apply_test': skip_fail, |
60 'call_operator_test': skip_fail, | 58 'call_operator_test': skip_fail, |
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
532 | 530 |
533 if (!async_helper.asyncTestStarted) done(); | 531 if (!async_helper.asyncTestStarted) done(); |
534 }); | 532 }); |
535 } | 533 } |
536 } | 534 } |
537 | 535 |
538 for (let action of unittest_tests) { | 536 for (let action of unittest_tests) { |
539 action(); | 537 action(); |
540 } | 538 } |
541 })(); | 539 })(); |
OLD | NEW |