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 [ $compiler == dart2dart ] | 5 [ $compiler == dart2dart ] |
| 6 |
| 7 # The following tests use hashCode() (function) instead of hashCode (getter). |
| 8 # co19 issue 273 |
| 9 Language/10_Expressions/11_Instance_Creation/1_New_A12_t01: Fail, OK |
| 10 LibTest/isolate/SendPort/hashCode_A01_t01: Fail, OK |
| 11 LibTest/core/Map/putIfAbsent_A01_t04: Fail, OK |
| 12 LibTest/core/Map/Map_class_A01_t03: Fail, OK |
| 13 LibTest/core/Set/remove_A01_t03: Fail, OK |
| 14 LibTest/core/Set/contains_A01_t03: Fail, OK |
| 15 LibTest/core/Set/addAll_A01_t04: Fail, OK |
| 16 LibTest/core/Set/remove_A01_t04: Fail, OK |
| 17 LibTest/core/Set/addAll_A01_t03: Fail, OK |
| 18 LibTest/core/Set/removeAll_A01_t03: Fail, OK |
| 19 LibTest/core/Set/forEach_A01_t03: Fail, OK |
| 20 LibTest/core/Set/add_A01_t03: Fail, OK |
| 21 LibTest/core/Set/filter_A01_t03: Fail, OK |
| 22 LibTest/core/String/hashCode_A01_t01: Fail, OK |
| 23 LibTest/core/int/hashCode_A01_t01: Fail, OK |
| 24 |
| 25 |
6 # These tests need to be updated to the new Date core lib API, co19 issue 256: | 26 # These tests need to be updated to the new Date core lib API, co19 issue 256: |
7 LibTest/core/Date/Date.fromMillisecondsSinceEpoch_A01_t01: Fail | 27 LibTest/core/Date/Date.fromMillisecondsSinceEpoch_A01_t01: Fail |
8 LibTest/core/Date/Date.fromMillisecondsSinceEpoch_A01_t02: Fail | 28 LibTest/core/Date/Date.fromMillisecondsSinceEpoch_A01_t02: Fail |
9 LibTest/core/Date/Date_A01_t04: Fail | 29 LibTest/core/Date/Date_A01_t04: Fail |
10 LibTest/core/Date/Date_A01_t05: Fail | 30 LibTest/core/Date/Date_A01_t05: Fail |
11 LibTest/core/Date/isUtc_A01_t01: Fail | 31 LibTest/core/Date/isUtc_A01_t01: Fail |
12 LibTest/core/Date/millisecondsSinceEpoch_A01_t01: Fail | 32 LibTest/core/Date/millisecondsSinceEpoch_A01_t01: Fail |
13 LibTest/core/Date/operator_GE_A01_t01: Fail | 33 LibTest/core/Date/operator_GE_A01_t01: Fail |
14 LibTest/core/Date/operator_GT_A01_t01: Fail | 34 LibTest/core/Date/operator_GT_A01_t01: Fail |
15 LibTest/core/Date/operator_LE_A01_t01: Fail | 35 LibTest/core/Date/operator_LE_A01_t01: Fail |
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
593 LibTest/core/Future/handleException_A01_t04: Fail, OK | 613 LibTest/core/Future/handleException_A01_t04: Fail, OK |
594 LibTest/core/Future/handleException_A01_t05: Fail, OK | 614 LibTest/core/Future/handleException_A01_t05: Fail, OK |
595 | 615 |
596 [ $compiler == dart2dart && $system == windows ] | 616 [ $compiler == dart2dart && $system == windows ] |
597 LibTest/core/double/operator_remainder_A01_t04: Fail # Result is NaN | 617 LibTest/core/double/operator_remainder_A01_t04: Fail # Result is NaN |
598 LibTest/core/double/round_A01_t01: Fail # Result is NaN | 618 LibTest/core/double/round_A01_t01: Fail # Result is NaN |
599 LibTest/core/int/operator_remainder_A01_t02: Fail # Result is NaN | 619 LibTest/core/int/operator_remainder_A01_t02: Fail # Result is NaN |
600 LibTest/core/int/remainder_A01_t02: Fail # Result is NaN | 620 LibTest/core/int/remainder_A01_t02: Fail # Result is NaN |
601 LibTest/core/double/remainder_A01_t04: Fail # Result is NaN | 621 LibTest/core/double/remainder_A01_t04: Fail # Result is NaN |
602 LibTest/core/Math/atan2_A01_t03: Fail # Result is NaN | 622 LibTest/core/Math/atan2_A01_t03: Fail # Result is NaN |
OLD | NEW |