Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Side by Side Diff: tests/language/language.status

Issue 9976004: Allow all different string-literals in map literals. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Enable string-literals in map constants. Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 AssertKeywordNegativeTest: Fail 94 AssertKeywordNegativeTest: Fail
95 AssertTest: Fail # Uses AssertError class. Bug 4385894. 95 AssertTest: Fail # Uses AssertError class. Bug 4385894.
96 AssignInstanceMethodNegativeTest: Fail 96 AssignInstanceMethodNegativeTest: Fail
97 BadNamedParametersTest: Fail # Issue 1941 97 BadNamedParametersTest: Fail # Issue 1941
98 BadNamedParameters2Test: Fail # Issue 1941 98 BadNamedParameters2Test: Fail # Issue 1941
99 BodyLessConstructorWrongArgNegativeTest: Fail 99 BodyLessConstructorWrongArgNegativeTest: Fail
100 CallOperatorTest: Pass # Issue 1355 100 CallOperatorTest: Pass # Issue 1355
101 CharEscapeTest: Pass # Issue 1654 101 CharEscapeTest: Pass # Issue 1654
102 ClosureCallWrongArgumentCountNegativeTest: Fail 102 ClosureCallWrongArgumentCountNegativeTest: Fail
103 CompileTimeConstant3Test: Fail # Issue 1780 103 CompileTimeConstant3Test: Fail # Issue 1780
104 CompileTimeConstantOTest: Fail # Issue 2126
104 ConstConstructorSyntaxTest/05: Fail 105 ConstConstructorSyntaxTest/05: Fail
105 ConstCounterNegativeTest: Fail # issue 1655 106 ConstCounterNegativeTest: Fail # issue 1655
106 Constructor3NegativeTest: Fail 107 Constructor3NegativeTest: Fail
107 ConstructorCallWrongArgumentCountNegativeTest: Fail 108 ConstructorCallWrongArgumentCountNegativeTest: Fail
108 DefaultFactoryLibraryTest: Fail # Issue 514 109 DefaultFactoryLibraryTest: Fail # Issue 514
109 DisablePrivacyTest: Skip # Issue 1882: Needs --disable_privacy support. 110 DisablePrivacyTest: Skip # Issue 1882: Needs --disable_privacy support.
110 DuplicateImplementsTest: Skip # Issue 976 111 DuplicateImplementsTest: Skip # Issue 976
111 Field3aNegativeTest: Fail 112 Field3aNegativeTest: Fail
112 FieldMethod4NegativeTest: Fail 113 FieldMethod4NegativeTest: Fail
113 FinalSyntaxTest/*: Skip # can't handle base case 114 FinalSyntaxTest/*: Skip # can't handle base case
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 [ $compiler == frog || $compiler == frogsh ] 205 [ $compiler == frog || $compiler == frogsh ]
205 ExceptionTest: Fail # Issue 1785 206 ExceptionTest: Fail # Issue 1785
206 Factory3Test: Fail # Issue 417 207 Factory3Test: Fail # Issue 417
207 Factory2NegativeTest: Fail 208 Factory2NegativeTest: Fail
208 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE xception. 209 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE xception.
209 CompileTimeConstantCTest/02: Fail # string-concatenated (+) keys in literal maps . 210 CompileTimeConstantCTest/02: Fail # string-concatenated (+) keys in literal maps .
210 CompileTimeConstantDTest: Fail # doesn't recognize 400 + z (with z parameter of constructor) as compile-time constant. 211 CompileTimeConstantDTest: Fail # doesn't recognize 400 + z (with z parameter of constructor) as compile-time constant.
211 CompileTimeConstantETest: Fail 212 CompileTimeConstantETest: Fail
212 CompileTimeConstantGTest: Fail # compile time constants with super calls to opti onal arguments. 213 CompileTimeConstantGTest: Fail # compile time constants with super calls to opti onal arguments.
213 CompileTimeConstantKTest: Fail # Constant maps are not canonicalized correctly i f the same key appears multiple times. 214 CompileTimeConstantKTest: Fail # Constant maps are not canonicalized correctly i f the same key appears multiple times.
215 CompileTimeConstantOTest: Fail # String constants with string-interpolation.
214 DisablePrivacyTest: Skip # Issue 1882: Needs --disable_privacy support. 216 DisablePrivacyTest: Skip # Issue 1882: Needs --disable_privacy support.
215 DoubleToStringAsExponentialTest: Fail # fails due to -0.0. 217 DoubleToStringAsExponentialTest: Fail # fails due to -0.0.
216 # Once the -0.0 in DoubleToStringAsFixedTest is fixed it will probably need to 218 # Once the -0.0 in DoubleToStringAsFixedTest is fixed it will probably need to
217 # be moved to a 219 # be moved to a
218 # [ $compiler == frog ] 220 # [ $compiler == frog ]
219 # section. 221 # section.
220 DoubleToStringAsFixedTest: Fail # fails due to -0.0 and due to rounding in const ant propagation. 222 DoubleToStringAsFixedTest: Fail # fails due to -0.0 and due to rounding in const ant propagation.
221 DoubleToStringAsPrecisionTest: Fail # fails due to -0.0. 223 DoubleToStringAsPrecisionTest: Fail # fails due to -0.0.
222 ExtendTypeParameterNegativeTest: Skip # Issue 886 224 ExtendTypeParameterNegativeTest: Skip # Issue 886
223 ExtendTypeParameter2NegativeTest: Skip # Issue 886 225 ExtendTypeParameter2NegativeTest: Skip # Issue 886
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
456 [ $compiler == frog && $mode == debug ] 458 [ $compiler == frog && $mode == debug ]
457 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. 459 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop.
458 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. 460 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop.
459 461
460 [ $arch == simarm ] 462 [ $arch == simarm ]
461 *: Skip 463 *: Skip
462 464
463 [ $arch == arm ] 465 [ $arch == arm ]
464 *: Skip 466 *: Skip
465 467
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698