| 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 # This directory contains tests that are intended to show the | 5 # This directory contains tests that are intended to show the |
| 6 # current state of the language. | 6 # current state of the language. |
| 7 | 7 |
| 8 # In order to maintain maximum test coverage for all builds, | 8 # In order to maintain maximum test coverage for all builds, |
| 9 # please use the following procedure to mark a test | 9 # please use the following procedure to mark a test |
| 10 # failed on architectures other than the one you are working on. | 10 # failed on architectures other than the one you are working on. |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 # These bugs refer currently ongoing language discussions. | 37 # These bugs refer currently ongoing language discussions. |
| 38 Constructor5Test: Fail # (Discussion ongoing) | 38 Constructor5Test: Fail # (Discussion ongoing) |
| 39 Constructor6Test: Fail # (Discussion ongoing) | 39 Constructor6Test: Fail # (Discussion ongoing) |
| 40 | 40 |
| 41 # Regular bugs which should be fixed. | 41 # Regular bugs which should be fixed. |
| 42 | 42 |
| 43 ConstInit6NegativeTest: Fail # Issue 811 | 43 ConstInit6NegativeTest: Fail # Issue 811 |
| 44 WrongNumberTypeArgumentsTest: Fail # Issue 441 | 44 WrongNumberTypeArgumentsTest: Fail # Issue 441 |
| 45 | 45 |
| 46 # Issue 905. |
| 47 TypeVariableBoundsTest/01: Fail |
| 48 TypeVariableBoundsTest/02: Fail |
| 49 TypeVariableBoundsTest/05: Fail |
| 50 TypeVariableBoundsTest/06: Fail |
| 51 TypeVariableBoundsTest/09: Fail |
| 52 TypeVariableBoundsTest/10: Fail |
| 53 |
| 46 # DartC or Frog specific tests that should not be run by the VM | 54 # DartC or Frog specific tests that should not be run by the VM |
| 47 *DartcTest: Skip | 55 *DartcTest: Skip |
| 48 *DartcNegativeTest: Skip | 56 *DartcNegativeTest: Skip |
| 49 *FrogTest: Skip | 57 *FrogTest: Skip |
| 50 *FrogNegativeTest: Skip | 58 *FrogNegativeTest: Skip |
| 51 | 59 |
| 52 | 60 |
| 53 [ $component == vm && $mode == debug ] | 61 [ $component == vm && $mode == debug ] |
| 54 | 62 |
| 55 [ $component == vm && $mode == release ] | 63 [ $component == vm && $mode == release ] |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 ScopeNegativeTest: Fail | 296 ScopeNegativeTest: Fail |
| 289 ScriptNegativeTest: Fail | 297 ScriptNegativeTest: Fail |
| 290 StringEscapesTest: Fail | 298 StringEscapesTest: Fail |
| 291 StringTest: Fail | 299 StringTest: Fail |
| 292 SuperImplicitClosureTest: Fail | 300 SuperImplicitClosureTest: Fail |
| 293 SuperTest: Fail # this is testing precise ordering of super constructor call | 301 SuperTest: Fail # this is testing precise ordering of super constructor call |
| 294 SwitchLabelTest: Fail | 302 SwitchLabelTest: Fail |
| 295 TryCatch9NegativeTest: Fail | 303 TryCatch9NegativeTest: Fail |
| 296 TypeVariableBoundsTest/00: Fail # these tests would work if the type was constru
cted | 304 TypeVariableBoundsTest/00: Fail # these tests would work if the type was constru
cted |
| 297 TypeVariableBoundsTest/01: Fail | 305 TypeVariableBoundsTest/01: Fail |
| 298 TypeVariableBoundsTest/02: Fail | 306 TypeVariableBoundsTest/10: Fail |
| 299 TypeVariableBoundsTest/05: Fail | |
| 300 TypeVariableBoundsTest/06: Fail | |
| 301 WrongNumberTypeArgumentsTest: Fail | 307 WrongNumberTypeArgumentsTest: Fail |
| 302 ImplicitThisTest/01: Fail # Issue 376 | 308 ImplicitThisTest/01: Fail # Issue 376 |
| 303 ImplicitThisTest/02: Fail # Issue 376 | 309 ImplicitThisTest/02: Fail # Issue 376 |
| 304 ImplicitThisTest/03: Fail # Issue 376 | 310 ImplicitThisTest/03: Fail # Issue 376 |
| 305 ImplicitThisTest/04: Fail # Issue 376 | 311 ImplicitThisTest/04: Fail # Issue 376 |
| 306 ImplicitThisTest/none: Fail # Issue 376 | 312 ImplicitThisTest/none: Fail # Issue 376 |
| 307 | 313 |
| 308 [ ($component == frogsh || $component == frog || $component == frogium) && $unc
hecked ] | 314 [ ($component == frogsh || $component == frog || $component == frogium) && $unc
hecked ] |
| 309 PrivateMemberTest/01: Fail # test seems bad - see issue #353 | 315 PrivateMemberTest/01: Fail # test seems bad - see issue #353 |
| 310 PrivateMemberTest/02: Fail # test seems bad - see issue #353 | 316 PrivateMemberTest/02: Fail # test seems bad - see issue #353 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 330 NumberSyntaxTest: Timeout | 336 NumberSyntaxTest: Timeout |
| 331 | 337 |
| 332 [ $arch == x64 ] | 338 [ $arch == x64 ] |
| 333 *: Skip | 339 *: Skip |
| 334 | 340 |
| 335 [ $arch == simarm ] | 341 [ $arch == simarm ] |
| 336 *: Skip | 342 *: Skip |
| 337 | 343 |
| 338 [ $arch == arm ] | 344 [ $arch == arm ] |
| 339 *: Skip | 345 *: Skip |
| OLD | NEW |