| 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 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 StringEscape1NegativeTest: Skip | 196 StringEscape1NegativeTest: Skip |
| 197 GCTest: Skip # Issue 1487 | 197 GCTest: Skip # Issue 1487 |
| 198 | 198 |
| 199 [ $compiler == frogsh ] | 199 [ $compiler == frogsh ] |
| 200 ArithmeticTest: Fail # Issue 1470 | 200 ArithmeticTest: Fail # Issue 1470 |
| 201 IntrinsifiedMethodsTest: Fail # Issue 1470 | 201 IntrinsifiedMethodsTest: Fail # Issue 1470 |
| 202 | 202 |
| 203 [ ($compiler == frog || $compiler == frogsh) && $unchecked ] | 203 [ ($compiler == frog || $compiler == frogsh) && $unchecked ] |
| 204 BoolTest: Fail # Issue 2092 | 204 BoolTest: Fail # Issue 2092 |
| 205 CompileTimeConstantCTest/01: Fail # integers as keys in literal maps. | 205 CompileTimeConstantCTest/01: Fail # integers as keys in literal maps. |
| 206 Operator4Test: Fail |
| 206 | 207 |
| 207 [ $compiler == frog || $compiler == frogsh ] | 208 [ $compiler == frog || $compiler == frogsh ] |
| 208 StaticInitializerTypeErrorTest: Fail # Checked mode not implemented. | 209 StaticInitializerTypeErrorTest: Fail # Checked mode not implemented. |
| 209 ExceptionTest: Fail # Issue 1785 | 210 ExceptionTest: Fail # Issue 1785 |
| 210 Factory3Test: Fail # Issue 417 | 211 Factory3Test: Fail # Issue 417 |
| 211 Factory2NegativeTest: Fail | 212 Factory2NegativeTest: Fail |
| 212 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 213 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 213 CompileTimeConstantCTest/02: Fail # string-concatenated (+) keys in literal maps
. | 214 CompileTimeConstantCTest/02: Fail # string-concatenated (+) keys in literal maps
. |
| 214 CompileTimeConstantDTest: Fail # doesn't recognize 400 + z (with z parameter of
constructor) as compile-time constant. | 215 CompileTimeConstantDTest: Fail # doesn't recognize 400 + z (with z parameter of
constructor) as compile-time constant. |
| 215 CompileTimeConstantETest: Fail | 216 CompileTimeConstantETest: Fail |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 MathTest: Fail | 327 MathTest: Fail |
| 327 MethodOverrideTest: Fail # checking on precise type rules for methods | 328 MethodOverrideTest: Fail # checking on precise type rules for methods |
| 328 NamedParametersPassingFalsyTest: Fail | 329 NamedParametersPassingFalsyTest: Fail |
| 329 NamedParametersTypeTest: Fail | 330 NamedParametersTypeTest: Fail |
| 330 NamedParametersWithConversionsTest: Fail | 331 NamedParametersWithConversionsTest: Fail |
| 331 NonConstSuperNegativeTest: Fail | 332 NonConstSuperNegativeTest: Fail |
| 332 NullPointerExceptionTest: Fail | 333 NullPointerExceptionTest: Fail |
| 333 NullTest: Fail | 334 NullTest: Fail |
| 334 NullToStringTest: Fail | 335 NullToStringTest: Fail |
| 335 NumbersTest: Fail | 336 NumbersTest: Fail |
| 336 Operator4Test: Fail | |
| 337 OverrideFieldTest/01: Fail | 337 OverrideFieldTest/01: Fail |
| 338 OverrideFieldTest/04: Fail | 338 OverrideFieldTest/04: Fail |
| 339 OverrideMethodWithFieldTest/01: Fail | 339 OverrideMethodWithFieldTest/01: Fail |
| 340 ParameterInitializer5NegativeTest: Fail # Issue 581 | 340 ParameterInitializer5NegativeTest: Fail # Issue 581 |
| 341 Prefix101Test: Fail # Allow multiple imports with same prefix. | 341 Prefix101Test: Fail # Allow multiple imports with same prefix. |
| 342 Prefix8NegativeTest: Fail | 342 Prefix8NegativeTest: Fail |
| 343 Prefix9NegativeTest: Fail | 343 Prefix9NegativeTest: Fail |
| 344 Prefix11NegativeTest: Fail | 344 Prefix11NegativeTest: Fail |
| 345 Prefix16NegativeTest: Fail | 345 Prefix16NegativeTest: Fail |
| 346 Prefix20NegativeTest: Fail | 346 Prefix20NegativeTest: Fail |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 | 467 |
| 468 [ ($compiler == frog || $compiler == frogsh) && $runtime == none ] | 468 [ ($compiler == frog || $compiler == frogsh) && $runtime == none ] |
| 469 *: Skip | 469 *: Skip |
| 470 | 470 |
| 471 [ $arch == simarm ] | 471 [ $arch == simarm ] |
| 472 *: Skip | 472 *: Skip |
| 473 | 473 |
| 474 [ $arch == arm ] | 474 [ $arch == arm ] |
| 475 *: Skip | 475 *: Skip |
| 476 | 476 |
| OLD | NEW |