| 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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 # frogium: Dart code compiled with frog VM running under DumpRenderTree | 226 # frogium: Dart code compiled with frog VM running under DumpRenderTree |
| 227 # webdriver: Dart code compiled with frog VM running on an actual browser | 227 # webdriver: Dart code compiled with frog VM running on an actual browser |
| 228 # (Chrome, IE, Firefox, Safari, etc). If a test is only failing on a particular | 228 # (Chrome, IE, Firefox, Safari, etc). If a test is only failing on a particular |
| 229 # browser, you can be more specific about the failure by using $browser: | 229 # browser, you can be more specific about the failure by using $browser: |
| 230 # [ $component == webdriver && $browser == chrome ] for example. | 230 # [ $component == webdriver && $browser == chrome ] for example. |
| 231 [ ($component == frog || $component == frogsh || $component == frogium || $compo
nent == webdriver) && $unchecked ] | 231 [ ($component == frog || $component == frogsh || $component == frogium || $compo
nent == webdriver) && $unchecked ] |
| 232 BoolTest: Fail # Issue 2092 | 232 BoolTest: Fail # Issue 2092 |
| 233 CompileTimeConstantCTest/01: Fail # integers as keys in literal maps. | 233 CompileTimeConstantCTest/01: Fail # integers as keys in literal maps. |
| 234 | 234 |
| 235 [ $component == frog || $component == frogsh || $component == frogium || $compon
ent == webdriver] | 235 [ $component == frog || $component == frogsh || $component == frogium || $compon
ent == webdriver] |
| 236 AdjacentConstStringLiteralsTest: Fail # Issue 2110 | |
| 237 ExceptionTest: Fail # Issue 1785 | 236 ExceptionTest: Fail # Issue 1785 |
| 238 Factory3Test: Fail # Issue 417 | 237 Factory3Test: Fail # Issue 417 |
| 239 Factory2NegativeTest: Fail | 238 Factory2NegativeTest: Fail |
| 240 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 239 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 241 CompileTimeConstantCTest/02: Fail # string-concatenated (+) keys in literal maps
. | 240 CompileTimeConstantCTest/02: Fail # string-concatenated (+) keys in literal maps
. |
| 242 CompileTimeConstantDTest: Fail # doesn't recognize 400 + z (with z parameter of
constructor) as compile-time constant. | 241 CompileTimeConstantDTest: Fail # doesn't recognize 400 + z (with z parameter of
constructor) as compile-time constant. |
| 243 DisablePrivacyTest: Skip # Issue 1882: Needs --disable_privacy support. | 242 DisablePrivacyTest: Skip # Issue 1882: Needs --disable_privacy support. |
| 244 DoubleToStringAsExponentialTest: Fail # fails due to -0.0. | 243 DoubleToStringAsExponentialTest: Fail # fails due to -0.0. |
| 245 # Once the -0.0 in DoubleToStringAsFixedTest is fixed it will probably need to | 244 # Once the -0.0 in DoubleToStringAsFixedTest is fixed it will probably need to |
| 246 # be moved to a | 245 # be moved to a |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 [ $component == frog && $mode == debug ] | 479 [ $component == frog && $mode == debug ] |
| 481 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. | 480 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. |
| 482 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. | 481 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. |
| 483 | 482 |
| 484 [ $arch == simarm ] | 483 [ $arch == simarm ] |
| 485 *: Skip | 484 *: Skip |
| 486 | 485 |
| 487 [ $arch == arm ] | 486 [ $arch == arm ] |
| 488 *: Skip | 487 *: Skip |
| 489 | 488 |
| OLD | NEW |