| 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 *FrogNegativeTest: Skip | 210 *FrogNegativeTest: Skip |
| 211 | 211 |
| 212 | 212 |
| 213 [ $component == dartium ] | 213 [ $component == dartium ] |
| 214 # TODO: These need to be retriaged. | 214 # TODO: These need to be retriaged. |
| 215 RichardsTest: Fail | 215 RichardsTest: Fail |
| 216 TypedMessageTest: Fail # Bug 5246195 | 216 TypedMessageTest: Fail # Bug 5246195 |
| 217 StringEscape1NegativeTest: Skip | 217 StringEscape1NegativeTest: Skip |
| 218 | 218 |
| 219 | 219 |
| 220 [ $component == frogsh || $component == webdriver] |
| 221 IntrinsifiedMethodsTest: Fail # Issue 1470 |
| 222 ArithmeticTest: Fail # Issue 1470 |
| 223 |
| 220 [ $component == frog ] | 224 [ $component == frog ] |
| 221 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation | 225 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation |
| 222 | 226 |
| 223 # This set of four test components (frog, frogsh, frogium, and webdriver) all | 227 # This set of four test components (frog, frogsh, frogium, and webdriver) all |
| 224 # consume frog output, so if frog is generating the incorrect code, chances are | 228 # consume frog output, so if frog is generating the incorrect code, chances are |
| 225 # it will fail on all of these components. | 229 # it will fail on all of these components. |
| 226 # | 230 # |
| 227 # Further explanation: | 231 # Further explanation: |
| 228 # frog: frog compiler, run using the VM | 232 # frog: frog compiler, run using the VM |
| 229 # frogsh: self-hosted frog compiler | 233 # frogsh: self-hosted frog compiler |
| 230 # frogium: Dart code compiled with frogsh running under DumpRenderTree | 234 # frogium: Dart code compiled with frogsh running under DumpRenderTree |
| 231 # webdriver: Dart code compiled with frogsh running on an actual browser | 235 # 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 | 236 # (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: | 237 # browser, you can be more specific about the failure by using $browser: |
| 234 # [ $component == webdriver && $browser == chrome ] for example. | 238 # [ $component == webdriver && $browser == chrome ] for example. |
| 235 [ $component == frog || $component == frogsh || $component == frogium || $compon
ent == webdriver] | 239 [ $component == frog || $component == frogsh || $component == frogium || $compon
ent == webdriver] |
| 236 IntrinsifiedMethodsTest: Fail # Issue 1470 | |
| 237 Factory3Test: Fail # Issue 417 | 240 Factory3Test: Fail # Issue 417 |
| 238 Factory2NegativeTest: Fail | 241 Factory2NegativeTest: Fail |
| 239 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 242 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 240 ExtendTypeParameterNegativeTest: Skip # Issue 886 | 243 ExtendTypeParameterNegativeTest: Skip # Issue 886 |
| 241 ExtendTypeParameter2NegativeTest: Skip # Issue 886 | 244 ExtendTypeParameter2NegativeTest: Skip # Issue 886 |
| 242 ImplementTypeParameterNegativeTest: Skip # Issue 887 | 245 ImplementTypeParameterNegativeTest: Skip # Issue 887 |
| 243 FactoryImplementationTest: Fail # Issue 523 | 246 FactoryImplementationTest: Fail # Issue 523 |
| 244 PseudoKWTest: Fail # Issue 356 | 247 PseudoKWTest: Fail # Issue 356 |
| 245 NamingTest: Fail # Issue 356 | 248 NamingTest: Fail # Issue 356 |
| 246 DuplicateImplementsTest: Skip # Issue 976 | 249 DuplicateImplementsTest: Skip # Issue 976 |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 | 449 |
| 447 [ $component == frog && $mode == debug ] | 450 [ $component == frog && $mode == debug ] |
| 448 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. | 451 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. |
| 449 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. | 452 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. |
| 450 | 453 |
| 451 [ $arch == simarm ] | 454 [ $arch == simarm ] |
| 452 *: Skip | 455 *: Skip |
| 453 | 456 |
| 454 [ $arch == arm ] | 457 [ $arch == arm ] |
| 455 *: Skip | 458 *: Skip |
| OLD | NEW |