OLD | NEW |
1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, 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 prefix co19 | 5 prefix co19 |
6 | 6 |
7 # | 7 # |
8 # Problems specific to compiler in release build (--optimize) | 8 # Problems specific to compiler in release build (--optimize) |
9 # | 9 # |
10 [ $arch == dartc && $mode == release ] | 10 [ $arch == dartc && $mode == release ] |
| 11 |
| 12 # OK to fail - the optimized code doesn't execute correctly after type errors |
| 13 LibTest/core/List/List/List/A01/t04: Fail |
| 14 |
| 15 # Faiures we should fix |
| 16 LibTest/core/Queue/Queue.from/Queue/Queue.from/A01/t01: Fail # Issue 218 |
| 17 LibTest/core/Queue/Queue.from/Queue/Queue.from/A01/t02: Fail # Issue 218 |
| 18 LibTest/core/Date/Date.withTimeZone/Date/Date.withTimeZone/A01/t09: Fail # Issue
202 |
11 LibTest/core/Set/add/Set/add/A01/t05: Fail # Bug 5392511 | 19 LibTest/core/Set/add/Set/add/A01/t05: Fail # Bug 5392511 |
12 LibTest/core/Set/addAll/Set/addAll/A01/t05: Fail # Bug 5392511 | 20 LibTest/core/Set/addAll/Set/addAll/A01/t05: Fail # Bug 5392511 |
13 LibTest/core/Set/contains/Set/contains/A01/t04: Fail # Bug 5392511 | 21 LibTest/core/Set/contains/Set/contains/A01/t04: Fail # Bug 5392511 |
14 LibTest/core/Set/containsAll/Set/containsAll/A01/t04: Fail # Bug 5392511 | 22 LibTest/core/Set/containsAll/Set/containsAll/A01/t04: Fail # Bug 5392511 |
15 LibTest/core/Set/remove/Set/remove/A01/t05: Fail # Bug 5392511 | 23 LangGuideTest/02_Language_Constructs/02_11_Exceptions/A09/t04: Fail # Issue 219 |
16 | 24 LangGuideTest/02_Language_Constructs/02_11_Exceptions/A09/t02: Fail # Issue 219 |
17 LibTest/core/List/List/List/A01/t04: Skip | |
18 LibTest/core/Date/Date.withTimeZone/Date/Date.withTimeZone/A01/t09: Skip | |
19 LibTest/core/Queue/Queue.from/Queue/Queue.from/A01/t01: Skip | |
20 LibTest/core/Queue/Queue.from/Queue/Queue.from/A01/t02: Skip | |
21 LibTest/core/Set/remove/Set/remove/A01/t05: Skip | |
22 LangGuideTest/02_Language_Constructs/02_11_Exceptions/A09/t04: Skip | |
23 LangGuideTest/02_Language_Constructs/02_11_Exceptions/A09/t02: Skip | |
24 | |
25 | 25 |
26 # | 26 # |
27 # Tests that pass in release mode but fail in debug mode | 27 # Tests that pass in release mode but fail in debug mode |
28 # | 28 # |
29 [ $arch == dartc && $mode == debug ] | 29 [ $arch == dartc && $mode == debug ] |
30 | 30 |
31 # | 31 # |
32 # Problems in both debug and release builds | 32 # Problems in both debug and release builds |
33 # | 33 # |
34 [ $arch == dartc ] | 34 [ $arch == dartc ] |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 LibTest/core/StringBuffer/addAll/StringBuffer/addAll/A01/t02: Fail | 186 LibTest/core/StringBuffer/addAll/StringBuffer/addAll/A01/t02: Fail |
187 | 187 |
188 | 188 |
189 | 189 |
190 [ $arch == dartium ] | 190 [ $arch == dartium ] |
191 *: Skip | 191 *: Skip |
192 | 192 |
193 | 193 |
194 [ $arch == chromium ] | 194 [ $arch == chromium ] |
195 *: Skip | 195 *: Skip |
OLD | NEW |