OLD | NEW |
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 # This file contains the tests that have been identified as broken and | 5 # This file contains the tests that have been identified as broken and |
6 # have been filed on the co19 issue tracker at | 6 # have been filed on the co19 issue tracker at |
7 # https://code.google.com/p/co19/issues/list (read-only). | 7 # https://code.google.com/p/co19/issues/list (read-only). |
8 # https://github.com/dart-lang/co19/issues . | 8 # https://github.com/dart-lang/co19/issues . |
9 # | 9 # |
10 # In order to qualify here these tests need to fail both on the VM and dart2js. | 10 # In order to qualify here these tests need to fail both on the VM and dart2js. |
11 | 11 |
12 ### GENERAL FAILURES ### | 12 ### GENERAL FAILURES ### |
13 | 13 |
14 [ $runtime == vm || $runtime != vm ] | 14 [ $runtime == vm || $runtime != vm ] |
15 # Tests that fail everywhere, including the analyzer. | 15 # Tests that fail everywhere, including the analyzer. |
16 | 16 |
17 LibTest/typed_data/ByteData/buffer_A01_t01: Fail # co19 r736 bug - sent comment. | 17 LibTest/typed_data/ByteData/buffer_A01_t01: Fail # co19 r736 bug - sent comment. |
18 | 18 |
19 LibTest/core/RegExp/firstMatch_A01_t01: Fail # co19 issue 742 | 19 LibTest/core/RegExp/firstMatch_A01_t01: Fail # co19 issue 742 |
20 | 20 |
21 [ $compiler != dart2analyzer ] | 21 [ $compiler != dart2analyzer ] |
22 # Tests that fail on every runtime, but not on the analyzer. | 22 # Tests that fail on every runtime, but not on the analyzer. |
23 | |
24 LibTest/async/Future/Future.error_A01_t01: RuntimeError # co19 issue 712 | |
25 LibTest/async/Completer/completeError_A02_t01: RuntimeError # co19 issue 712 | |
26 LibTest/isolate/ReceivePort/asBroadcastStream_A02_t01: Fail # co19 issue 687 | 23 LibTest/isolate/ReceivePort/asBroadcastStream_A02_t01: Fail # co19 issue 687 |
27 LibTest/async/Stream/asBroadcastStream_A02_t01: Fail # co19 issue 687 | 24 LibTest/async/Stream/asBroadcastStream_A02_t01: Fail # co19 issue 687 |
28 | 25 |
29 LibTest/core/Symbol/Symbol_A01_t04: RuntimeError # Issue 25804 | 26 LibTest/core/Symbol/Symbol_A01_t04: RuntimeError # Issue 25804 |
30 | 27 |
31 Language/Classes/same_name_type_variable_t01: Pass, MissingCompileTimeError, Fai
l # Issue 14513 | 28 Language/Classes/same_name_type_variable_t01: Pass, MissingCompileTimeError, Fai
l # Issue 14513 |
32 Language/Classes/same_name_type_variable_t04: Pass, MissingCompileTimeError, Fai
l # Issue 14513 | 29 Language/Classes/same_name_type_variable_t04: Pass, MissingCompileTimeError, Fai
l # Issue 14513 |
33 Language/Classes/same_name_type_variable_t07: Pass, MissingCompileTimeError, Fai
l # Issue 14513 | 30 Language/Classes/same_name_type_variable_t07: Pass, MissingCompileTimeError, Fai
l # Issue 14513 |
34 | 31 |
35 LibTest/math/acos_A01_t01: PASS, FAIL, OK # Issue 26261 | 32 LibTest/math/acos_A01_t01: PASS, FAIL, OK # Issue 26261 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 LibTest/isolate/ReceivePort/sendPort_A01_t01: Fail # Co19 issue 639 | 66 LibTest/isolate/ReceivePort/sendPort_A01_t01: Fail # Co19 issue 639 |
70 LibTest/isolate/SendPort/call_A01_t01: Fail # Co19 issue 639 | 67 LibTest/isolate/SendPort/call_A01_t01: Fail # Co19 issue 639 |
71 LibTest/isolate/SendPort/send_A02_t04: Fail # Co19 issue 639 | 68 LibTest/isolate/SendPort/send_A02_t04: Fail # Co19 issue 639 |
72 LibTest/isolate/SendPort/send_A02_t05: Fail # Co19 issue 639 | 69 LibTest/isolate/SendPort/send_A02_t05: Fail # Co19 issue 639 |
73 LibTest/isolate/SendPort/send_A02_t06: Fail # Co19 issue 639 | 70 LibTest/isolate/SendPort/send_A02_t06: Fail # Co19 issue 639 |
74 LibTest/isolate/SendPort/send_A03_t01: Fail # Co19 issue 639 | 71 LibTest/isolate/SendPort/send_A03_t01: Fail # Co19 issue 639 |
75 LibTest/isolate/SendPort/send_A03_t02: Fail # Co19 issue 639 | 72 LibTest/isolate/SendPort/send_A03_t02: Fail # Co19 issue 639 |
76 | 73 |
77 [ $runtime == dartium || $compiler == dart2js ] | 74 [ $runtime == dartium || $compiler == dart2js ] |
78 LibTest/async/Future/Future.delayed_A01_t02: Pass, Fail # Issue 15524 | 75 LibTest/async/Future/Future.delayed_A01_t02: Pass, Fail # Issue 15524 |
79 | |
80 ### CHECKED MODE FAILURES ### | |
81 | |
82 [ $compiler != dart2analyzer && $checked ] | |
83 Language/Statements/Return/runtime_type_t04: RuntimeError # Issue 26133 | |
OLD | NEW |