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

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

Issue 8525013: Fix failures. (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 | « no previous file | no next file » | 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 ImplicitThisTest/04: Fail # Issue 374 49 ImplicitThisTest/04: Fail # Issue 374
50 ImplicitThisTest/none: Fail # Issue 374 50 ImplicitThisTest/none: Fail # Issue 374
51 51
52 # DartC or Frog specific tests that should not be run by the VM 52 # DartC or Frog specific tests that should not be run by the VM
53 *DartcTest: Skip 53 *DartcTest: Skip
54 *DartcNegativeTest: Skip 54 *DartcNegativeTest: Skip
55 *FrogTest: Skip 55 *FrogTest: Skip
56 *FrogNegativeTest: Skip 56 *FrogNegativeTest: Skip
57 57
58 58
59 [ $component == vm && $mode == debug ] 59 [ ($component == vm || $component == dartium) && $mode == debug ]
60 NonParameterizedFactoryTest: Crash # Issue 226 60 NonParameterizedFactoryTest: Crash # Issue 226
61 FactoryNegativeTest: Crash # Issue 417 61 FactoryNegativeTest: Crash # Issue 417
62 62
63 [ ($component == vm || $component == dartium) && $mode == release ]
64 FactoryNegativeTest: Fail # Issue 417
65
63 # Problems specific to dartc optimized mode 66 # Problems specific to dartc optimized mode
64 [ ($component == dartc || $component == chromium) && $mode == release ] 67 [ ($component == dartc || $component == chromium) && $mode == release ]
65 MethodInvocationTest: Fail # Bug 5392266 68 MethodInvocationTest: Fail # Bug 5392266
66 Label2NegativeTest: Crash # Bug 5318228 69 Label2NegativeTest: Crash # Bug 5318228
67 NullPointerExceptionTest: Fail # Bug 5391976 70 NullPointerExceptionTest: Fail # Bug 5391976
68 CallThroughNullGetterTest: Fail # Bug 5391976 71 CallThroughNullGetterTest: Fail # Bug 5391976
69 Private3Test: Fail # Bug 5391976 72 Private3Test: Fail # Bug 5391976
70 Switch3NegativeTest: Crash # Bug 5318228 73 Switch3NegativeTest: Crash # Bug 5318228
71 BadNamedParametersTest: Fail # Bug 4202974 - release mode is not thr owing NSME 74 BadNamedParametersTest: Fail # Bug 4202974 - release mode is not thr owing NSME
72 CTConst2Test: Fail # Codesite issue 124 75 CTConst2Test: Fail # Codesite issue 124
73 FactoryNegativeTest: Fail # Issue 417
74 76
75 # Problems specific to dartc debug mode 77 # Problems specific to dartc debug mode
76 [ ($component == dartc || $component == chromium) && $mode == debug ] 78 [ ($component == dartc || $component == chromium) && $mode == debug ]
77 79
78 80
79 [ $component == dartc || $component == chromium ] 81 [ $component == dartc || $component == chromium ]
80 Library4NegativeTest: Fail # Bug 5406175 82 Library4NegativeTest: Fail # Bug 5406175
81 Prefix3NegativeTest: Fail # Bug 5406175 83 Prefix3NegativeTest: Fail # Bug 5406175
82 Prefix11NegativeTest: Fail # Bug 5406175 84 Prefix11NegativeTest: Fail # Bug 5406175
83 Prefix12NegativeTest: Fail # Bug 5406175 85 Prefix12NegativeTest: Fail # Bug 5406175
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 RichardsTest: Fail 191 RichardsTest: Fail
190 UnboundGetterTest: Fail 192 UnboundGetterTest: Fail
191 Private2Test: Fail 193 Private2Test: Fail
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
201 FactoryNegativeTest: Fail # Issue 417
jimhug 2011/11/10 22:39:48 I think you need to move this down 2 lines so that
srdjan 2011/11/10 22:55:13 Thanks. Next CL.
199 202
200 [ $component == frogsh || $component == frog || $component == leg ] 203 [ $component == frogsh || $component == frog || $component == leg ]
201 204
202 # VM or DartC specific tests not to be run by Frog. See language.status 205 # VM or DartC specific tests not to be run by Frog. See language.status
203 *VMTest: Skip 206 *VMTest: Skip
204 *VMNegativeTest: Skip 207 *VMNegativeTest: Skip
205 *DartcTest: Skip 208 *DartcTest: Skip
206 *DartcNegativeTest: Skip 209 *DartcNegativeTest: Skip
207 # Currently, these patterns skip three tests: 210 # Currently, these patterns skip three tests:
208 # MathVMTest - correctly skipped as this relies on VM guarantees 211 # MathVMTest - correctly skipped as this relies on VM guarantees
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 FinalVarNegativeTest: Fail 344 FinalVarNegativeTest: Fail
342 345
343 [ $arch == x64 ] 346 [ $arch == x64 ]
344 *: Skip 347 *: Skip
345 348
346 [ $arch == simarm ] 349 [ $arch == simarm ]
347 *: Skip 350 *: Skip
348 351
349 [ $arch == arm ] 352 [ $arch == arm ]
350 *: Skip 353 *: Skip
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698