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 |
(...skipping 28 matching lines...) Expand all Loading... |
75 [ $system == lk ] | 80 [ $system == lk ] |
76 async/timer_regress22626_test: RuntimeError | 81 async/timer_regress22626_test: RuntimeError |
77 async/slow_consumer_test: Crash | 82 async/slow_consumer_test: Crash |
78 async/slow_consumer2_test: Crash | 83 async/slow_consumer2_test: Crash |
79 async/slow_consumer3_test: Crash | 84 async/slow_consumer3_test: Crash |
80 async/catch_errors12_test: RuntimeError | 85 async/catch_errors12_test: RuntimeError |
81 | 86 |
82 [ $arch == xarm ] | 87 [ $arch == xarm ] |
83 async/timer_regress22626_test: RuntimeError # Issue 279 | 88 async/timer_regress22626_test: RuntimeError # Issue 279 |
84 async/catch_errors12_test: Pass, RuntimeError # Issue 279 | 89 async/catch_errors12_test: Pass, RuntimeError # Issue 279 |
OLD | NEW |