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

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

Issue 8528050: Fix throwing ObjectNotClosure instead of null exception if closure is null. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years, 1 month 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
« no previous file with comments | « tests/co19/co19-runtime.status ('k') | tests/language/src/CallThroughNullGetterTest.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2011, 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 Private3Test: Fail # Bug 5391976 71 Private3Test: Fail # Bug 5391976
72 Switch3NegativeTest: Crash # Bug 5318228 72 Switch3NegativeTest: Crash # Bug 5318228
73 BadNamedParametersTest: Fail # Bug 4202974 - release mode is not thr owing NSME 73 BadNamedParametersTest: Fail # Bug 4202974 - release mode is not thr owing NSME
74 CTConst2Test: Fail # Codesite issue 124 74 CTConst2Test: Fail # Codesite issue 124
75 75
76 # Problems specific to dartc debug mode 76 # Problems specific to dartc debug mode
77 [ ($component == dartc || $component == chromium) && $mode == debug ] 77 [ ($component == dartc || $component == chromium) && $mode == debug ]
78 78
79 79
80 [ $component == dartc || $component == chromium ] 80 [ $component == dartc || $component == chromium ]
81 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE xception.
82
81 Library4NegativeTest: Fail # Bug 5406175 83 Library4NegativeTest: Fail # Bug 5406175
82 Prefix3NegativeTest: Fail # Bug 5406175 84 Prefix3NegativeTest: Fail # Bug 5406175
83 Prefix11NegativeTest: Fail # Bug 5406175 85 Prefix11NegativeTest: Fail # Bug 5406175
84 Prefix12NegativeTest: Fail # Bug 5406175 86 Prefix12NegativeTest: Fail # Bug 5406175
85 Prefix14Test: Fail # Bug 5406175 87 Prefix14Test: Fail # Bug 5406175
86 Prefix15Test: Skip # Bug 5406175 88 Prefix15Test: Skip # Bug 5406175
87 Prefix16NegativeTest: Fail # Bug 5532534 89 Prefix16NegativeTest: Fail # Bug 5532534
88 ConstConstructor1NegativeTest: FAIL # Bug 5142545 90 ConstConstructor1NegativeTest: FAIL # Bug 5142545
89 ConstConstructor2NegativeTest: FAIL # Bug 5142545 91 ConstConstructor2NegativeTest: FAIL # Bug 5142545
90 CTConst3Test: Fail # Codesite Issue 120 92 CTConst3Test: Fail # Codesite Issue 120
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 Private3Test: Fail 194 Private3Test: Fail
193 195
194 TypedMessageTest: Fail # Bug 5246195 196 TypedMessageTest: Fail # Bug 5246195
195 197
196 198
197 [ $component == frog || $component == leg ] 199 [ $component == frog || $component == leg ]
198 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation 200 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation
199 201
200 [ $component == frogsh || $component == frog || $component == leg || $component == webdriver || $component == frogium ] 202 [ $component == frogsh || $component == frog || $component == leg || $component == webdriver || $component == frogium ]
201 FactoryNegativeTest: Fail # Issue 417 203 FactoryNegativeTest: Fail # Issue 417
204 CallThroughNullGetterTest: Fail # Throw ObjectNotClosure instead of NullPointerE xception.
202 205
203 # VM or DartC specific tests not to be run by Frog. See language.status 206 # VM or DartC specific tests not to be run by Frog. See language.status
204 *VMTest: Skip 207 *VMTest: Skip
205 *VMNegativeTest: Skip 208 *VMNegativeTest: Skip
206 *DartcTest: Skip 209 *DartcTest: Skip
207 *DartcNegativeTest: Skip 210 *DartcNegativeTest: Skip
208 # Currently, these patterns skip three tests: 211 # Currently, these patterns skip three tests:
209 # MathVMTest - correctly skipped as this relies on VM guarantees 212 # MathVMTest - correctly skipped as this relies on VM guarantees
210 # - should add a version of this with the --enable_type_checks flag 213 # - should add a version of this with the --enable_type_checks flag
211 # TypeVMTest - correctly skipped as this relies on detailed of TypeError 214 # TypeVMTest - correctly skipped as this relies on detailed of TypeError
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 StaticField2RunNegativeTest: Fail 353 StaticField2RunNegativeTest: Fail
351 354
352 [ $arch == x64 ] 355 [ $arch == x64 ]
353 *: Skip 356 *: Skip
354 357
355 [ $arch == simarm ] 358 [ $arch == simarm ]
356 *: Skip 359 *: Skip
357 360
358 [ $arch == arm ] 361 [ $arch == arm ]
359 *: Skip 362 *: Skip
OLDNEW
« no previous file with comments | « tests/co19/co19-runtime.status ('k') | tests/language/src/CallThroughNullGetterTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698