| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 # Further explanation: | 227 # Further explanation: |
| 228 # frog: frog compiler, run using the VM | 228 # frog: frog compiler, run using the VM |
| 229 # frogsh: self-hosted frog compiler | 229 # frogsh: self-hosted frog compiler |
| 230 # frogium: Dart code compiled with frogsh running under DumpRenderTree | 230 # frogium: Dart code compiled with frogsh running under DumpRenderTree |
| 231 # webdriver: Dart code compiled with frogsh running on an actual browser | 231 # webdriver: Dart code compiled with frogsh running on an actual browser |
| 232 # (Chrome, IE, Firefox, Safari, etc). If a test is only failing on a particular | 232 # (Chrome, IE, Firefox, Safari, etc). If a test is only failing on a particular |
| 233 # browser, you can be more specific about the failure by using $browser: | 233 # browser, you can be more specific about the failure by using $browser: |
| 234 # [ $component == webdriver && $browser == chrome ] for example. | 234 # [ $component == webdriver && $browser == chrome ] for example. |
| 235 [ $component == frog || $component == frogsh || $component == frogium || $compon
ent == webdriver] | 235 [ $component == frog || $component == frogsh || $component == frogium || $compon
ent == webdriver] |
| 236 IntrinsifiedMethodsTest: Fail # Issue 1470 | 236 IntrinsifiedMethodsTest: Fail # Issue 1470 |
| 237 ArithmeticTest: Fail # Issue 1470 |
| 237 Factory3Test: Fail # Issue 417 | 238 Factory3Test: Fail # Issue 417 |
| 238 Factory2NegativeTest: Fail | 239 Factory2NegativeTest: Fail |
| 239 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 240 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 240 ExtendTypeParameterNegativeTest: Skip # Issue 886 | 241 ExtendTypeParameterNegativeTest: Skip # Issue 886 |
| 241 ExtendTypeParameter2NegativeTest: Skip # Issue 886 | 242 ExtendTypeParameter2NegativeTest: Skip # Issue 886 |
| 242 ImplementTypeParameterNegativeTest: Skip # Issue 887 | 243 ImplementTypeParameterNegativeTest: Skip # Issue 887 |
| 243 FactoryImplementationTest: Fail # Issue 523 | 244 FactoryImplementationTest: Fail # Issue 523 |
| 244 PseudoKWTest: Fail # Issue 356 | 245 PseudoKWTest: Fail # Issue 356 |
| 245 NamingTest: Fail # Issue 356 | 246 NamingTest: Fail # Issue 356 |
| 246 DuplicateImplementsTest: Skip # Issue 976 | 247 DuplicateImplementsTest: Skip # Issue 976 |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 | 447 |
| 447 [ $component == frog && $mode == debug ] | 448 [ $component == frog && $mode == debug ] |
| 448 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. | 449 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. |
| 449 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. | 450 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. |
| 450 | 451 |
| 451 [ $arch == simarm ] | 452 [ $arch == simarm ] |
| 452 *: Skip | 453 *: Skip |
| 453 | 454 |
| 454 [ $arch == arm ] | 455 [ $arch == arm ] |
| 455 *: Skip | 456 *: Skip |
| OLD | NEW |