OLD | NEW |
1 # Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 1 # Copyright (c) 2015, the Fletch 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.md file. | 3 # BSD-style license that can be found in the LICENSE.md file. |
4 | 4 |
5 # Only meant to test when there is no way to implement Timer. | 5 # Only meant to test when there is no way to implement Timer. |
6 async/timer_not_available_test: Fail, OK | 6 async/timer_not_available_test: Fail, OK |
7 | 7 |
| 8 # Fail due to missing async-await implementation |
| 9 async/async_await_sync_completer_test: RuntimeError |
| 10 async/async_await_zones_test: RuntimeError |
| 11 |
8 # Fail because we do not generate stack trace objects. | 12 # Fail because we do not generate stack trace objects. |
9 async/futures_test: Fail | 13 async/futures_test: Fail |
10 async/stack_trace02_test: Fail | 14 async/stack_trace02_test: Fail |
11 async/stack_trace03_test: Fail | 15 async/stack_trace03_test: Fail |
12 async/stack_trace07_test: Fail | 16 async/stack_trace07_test: Fail |
13 async/stack_trace12_test: Fail | 17 async/stack_trace12_test: Fail |
14 async/stack_trace13_test: Fail | 18 async/stack_trace13_test: Fail |
15 async/stack_trace17_test: Fail | 19 async/stack_trace17_test: Fail |
16 async/stack_trace19_test: Fail | 20 async/stack_trace19_test: Fail |
17 async/stack_trace24_test: Fail | 21 async/stack_trace24_test: Fail |
18 | 22 |
19 # These tests depend on the unittest library which uses a lot of stuff | 23 # These tests depend on the unittest library which uses a lot of stuff |
20 # that Fletch doesn't support yet. | 24 # that Fletch doesn't support yet. |
21 async/first_regression_test: CompileTimeError | 25 async/first_regression_test: CompileTimeError |
22 async/future_timeout_test: CompileTimeError | 26 async/future_timeout_test: CompileTimeError |
23 async/multiple_timer_test: CompileTimeError | 27 async/multiple_timer_test: CompileTimeError |
24 async/schedule_microtask2_test: CompileTimeError | 28 async/schedule_microtask2_test: CompileTimeError |
25 async/schedule_microtask3_test: CompileTimeError | 29 async/schedule_microtask3_test: CompileTimeError |
26 async/schedule_microtask5_test: CompileTimeError | 30 async/schedule_microtask5_test: CompileTimeError |
27 async/stream_controller_async_test: CompileTimeError | 31 async/stream_controller_async_test: CompileTimeError |
28 async/stream_first_where_test: CompileTimeError | 32 async/stream_first_where_test: CompileTimeError |
29 async/stream_from_iterable_test: CompileTimeError | 33 async/stream_from_iterable_test: CompileTimeError |
30 async/stream_iterator_test: CompileTimeError | 34 async/stream_iterator_test: CompileTimeError |
31 async/stream_join_test: CompileTimeError | 35 async/stream_join_test: CompileTimeError |
32 async/stream_last_where_test: CompileTimeError | 36 async/stream_last_where_test: CompileTimeError |
33 async/stream_periodic2_test: CompileTimeError | 37 async/stream_periodic2_test: CompileTimeError |
34 async/stream_periodic3_test: CompileTimeError | 38 async/stream_periodic3_test: CompileTimeError |
35 async/stream_periodic4_test: CompileTimeError | 39 async/stream_periodic4_test: CompileTimeError |
36 async/stream_periodic5_test: CompileTimeError | 40 async/stream_periodic5_test: CompileTimeError |
| 41 async/stream_periodic6_test: CompileTimeError |
37 async/stream_periodic_test: CompileTimeError | 42 async/stream_periodic_test: CompileTimeError |
38 async/stream_single_test: CompileTimeError | 43 async/stream_single_test: CompileTimeError |
39 async/stream_single_to_multi_subscriber_test: CompileTimeError | 44 async/stream_single_to_multi_subscriber_test: CompileTimeError |
40 async/stream_state_nonzero_timer_test: CompileTimeError | 45 async/stream_state_nonzero_timer_test: CompileTimeError |
41 async/stream_state_test: CompileTimeError | 46 async/stream_state_test: CompileTimeError |
42 async/stream_subscription_as_future_test: CompileTimeError | 47 async/stream_subscription_as_future_test: CompileTimeError |
43 async/stream_subscription_cancel_test: CompileTimeError | 48 async/stream_subscription_cancel_test: CompileTimeError |
44 async/stream_timeout_test: CompileTimeError | 49 async/stream_timeout_test: CompileTimeError |
45 async/stream_transform_test: CompileTimeError | 50 async/stream_transform_test: CompileTimeError |
46 async/stream_transformation_broadcast_test: CompileTimeError | 51 async/stream_transformation_broadcast_test: CompileTimeError |
47 async/stream_type_test: RuntimeError | 52 async/stream_type_test: RuntimeError |
48 async/timer_cancel1_test: CompileTimeError | 53 async/timer_cancel1_test: CompileTimeError |
49 async/timer_cancel2_test: CompileTimeError | 54 async/timer_cancel2_test: CompileTimeError |
50 async/timer_cancel_test: CompileTimeError | 55 async/timer_cancel_test: CompileTimeError |
51 async/timer_isActive_test: CompileTimeError | 56 async/timer_isActive_test: CompileTimeError |
52 async/timer_repeat_test: CompileTimeError | 57 async/timer_repeat_test: CompileTimeError |
53 async/timer_test: CompileTimeError | 58 async/timer_test: CompileTimeError |
54 | 59 |
| 60 # No dart:js implementation. |
| 61 async/dart2js_uncaught_error_test: Skip |
| 62 |
55 # These tests fail because they use is checks requiring reified | 63 # These tests fail because they use is checks requiring reified |
56 # generics. | 64 # generics. |
57 async/future_test/01: RuntimeError # is! Future<String> | 65 async/future_test/01: RuntimeError # is! Future<String> |
58 async/future_test/none: RuntimeError # is! Future<String> | 66 async/future_test/none: RuntimeError # is! Future<String> |
59 async/stream_empty_test: RuntimeError # is Stream<String> | 67 async/stream_empty_test: RuntimeError # is Stream<String> |
60 | 68 |
61 [ $asan && $clang && $arch == x64 ] | 69 [ $asan && $clang && $arch == x64 ] |
62 # A couple of the failing tests leak ports (probably as a | 70 # A couple of the failing tests leak ports (probably as a |
63 # consequence of terminating due to exceptions). | 71 # consequence of terminating due to exceptions). |
64 async/future_test/01: Crash # Port leak | 72 async/future_test/01: Crash # Port leak |
65 async/future_test/none: Crash # Port leak. | 73 async/future_test/none: Crash # Port leak. |
66 | 74 |
67 [ $system == lk ] | 75 [ $system == lk ] |
68 async/timer_regress22626_test: RuntimeError | 76 async/timer_regress22626_test: RuntimeError |
69 async/slow_consumer_test: Crash | 77 async/slow_consumer_test: Crash |
70 async/slow_consumer2_test: Crash | 78 async/slow_consumer2_test: Crash |
71 async/slow_consumer3_test: Crash | 79 async/slow_consumer3_test: Crash |
72 async/catch_errors12_test: RuntimeError | 80 async/catch_errors12_test: RuntimeError |
73 | 81 |
74 [ $arch == xarm ] | 82 [ $arch == xarm ] |
75 async/timer_regress22626_test: RuntimeError # Issue 279 | 83 async/timer_regress22626_test: RuntimeError # Issue 279 |
76 async/catch_errors12_test: Pass, RuntimeError # Issue 279 | 84 async/catch_errors12_test: Pass, RuntimeError # Issue 279 |
OLD | NEW |