| 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 BodyLessConstructorWrongArgNegativeTest: Fail | 117 BodyLessConstructorWrongArgNegativeTest: Fail |
| 118 CallOperatorTest: Pass # Issue 1355 | 118 CallOperatorTest: Pass # Issue 1355 |
| 119 CharEscapeTest: Pass # Issue 1654 | 119 CharEscapeTest: Pass # Issue 1654 |
| 120 ClosureCallWrongArgumentCountNegativeTest: Fail | 120 ClosureCallWrongArgumentCountNegativeTest: Fail |
| 121 CompileTimeConstant3Test: Fail # Issue 1780 | 121 CompileTimeConstant3Test: Fail # Issue 1780 |
| 122 ConstConstructorSyntaxTest/05: Fail | 122 ConstConstructorSyntaxTest/05: Fail |
| 123 ConstCounterNegativeTest: Fail # issue 1655 | 123 ConstCounterNegativeTest: Fail # issue 1655 |
| 124 Constructor3NegativeTest: Fail | 124 Constructor3NegativeTest: Fail |
| 125 ConstructorCallWrongArgumentCountNegativeTest: Fail | 125 ConstructorCallWrongArgumentCountNegativeTest: Fail |
| 126 DefaultFactoryLibraryTest: Fail # Issue 514 | 126 DefaultFactoryLibraryTest: Fail # Issue 514 |
| 127 DisableLibraryPrivacyTest: Skip # Issue 1882: Needs --disable_privacy support. |
| 127 DuplicateImplementsTest: Skip # Issue 976 | 128 DuplicateImplementsTest: Skip # Issue 976 |
| 128 Field3aNegativeTest: Fail | 129 Field3aNegativeTest: Fail |
| 129 FieldMethod4NegativeTest: Fail | 130 FieldMethod4NegativeTest: Fail |
| 130 FinalSyntaxTest/none: Fail | 131 FinalSyntaxTest/none: Fail |
| 131 FunctionTypeAliasNegativeTest: Fail # Bug 5231617. | 132 FunctionTypeAliasNegativeTest: Fail # Bug 5231617. |
| 132 GenericParameterizedExtendsTest: Skip # Bug 5392297 | 133 GenericParameterizedExtendsTest: Skip # Bug 5392297 |
| 133 InstanceCallWrongArgumentCountNegativeTest: Fail | 134 InstanceCallWrongArgumentCountNegativeTest: Fail |
| 134 Label2NegativeTest: Fail # issue 1658 | 135 Label2NegativeTest: Fail # issue 1658 |
| 135 Library4NegativeTest: Fail # Bug 5406175 | 136 Library4NegativeTest: Fail # Bug 5406175 |
| 136 ListLiteral4Test: Fail # Issue 1343 | 137 ListLiteral4Test: Fail # Issue 1343 |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 # frogium: Dart code compiled with frog VM running under DumpRenderTree | 220 # frogium: Dart code compiled with frog VM running under DumpRenderTree |
| 220 # webdriver: Dart code compiled with frog VM running on an actual browser | 221 # webdriver: Dart code compiled with frog VM running on an actual browser |
| 221 # (Chrome, IE, Firefox, Safari, etc). If a test is only failing on a particular | 222 # (Chrome, IE, Firefox, Safari, etc). If a test is only failing on a particular |
| 222 # browser, you can be more specific about the failure by using $browser: | 223 # browser, you can be more specific about the failure by using $browser: |
| 223 # [ $component == webdriver && $browser == chrome ] for example. | 224 # [ $component == webdriver && $browser == chrome ] for example. |
| 224 [ $component == frog || $component == frogsh || $component == frogium || $compon
ent == webdriver] | 225 [ $component == frog || $component == frogsh || $component == frogium || $compon
ent == webdriver] |
| 225 ExceptionTest: Fail # Issue 1785 | 226 ExceptionTest: Fail # Issue 1785 |
| 226 Factory3Test: Fail # Issue 417 | 227 Factory3Test: Fail # Issue 417 |
| 227 Factory2NegativeTest: Fail | 228 Factory2NegativeTest: Fail |
| 228 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. | 229 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE
xception. |
| 230 DisableLibraryPrivacyTest: Skip # Issue 1882: Needs --disable_privacy support. |
| 229 DoubleToStringAsExponentialTest: Fail # fails due to -0.0. | 231 DoubleToStringAsExponentialTest: Fail # fails due to -0.0. |
| 230 # Once the -0.0 in DoubleToStringAsFixedTest is fixed it will probably need to | 232 # Once the -0.0 in DoubleToStringAsFixedTest is fixed it will probably need to |
| 231 # be moved to a | 233 # be moved to a |
| 232 # [ $component == frog || $component == frogium || $component == webdriver ] | 234 # [ $component == frog || $component == frogium || $component == webdriver ] |
| 233 # section. | 235 # section. |
| 234 DoubleToStringAsFixedTest: Fail # fails due to -0.0 and due to rounding in const
ant propagation. | 236 DoubleToStringAsFixedTest: Fail # fails due to -0.0 and due to rounding in const
ant propagation. |
| 235 DoubleToStringAsPrecisionTest: Fail # fails due to -0.0. | 237 DoubleToStringAsPrecisionTest: Fail # fails due to -0.0. |
| 236 ExtendTypeParameterNegativeTest: Skip # Issue 886 | 238 ExtendTypeParameterNegativeTest: Skip # Issue 886 |
| 237 ExtendTypeParameter2NegativeTest: Skip # Issue 886 | 239 ExtendTypeParameter2NegativeTest: Skip # Issue 886 |
| 238 FinalSyntaxTest/none: Fail | 240 FinalSyntaxTest/none: Fail |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 [ $component == frog && $mode == debug ] | 456 [ $component == frog && $mode == debug ] |
| 455 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. | 457 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. |
| 456 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. | 458 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. |
| 457 | 459 |
| 458 [ $arch == simarm ] | 460 [ $arch == simarm ] |
| 459 *: Skip | 461 *: Skip |
| 460 | 462 |
| 461 [ $arch == arm ] | 463 [ $arch == arm ] |
| 462 *: Skip | 464 *: Skip |
| 463 | 465 |
| OLD | NEW |