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

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

Issue 9143001: Fixes 2 tests and a crash (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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
« frog/value.dart ('K') | « tests/isolate/isolate.status ('k') | 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 FunctionTypeParameterTest: Fail 242 FunctionTypeParameterTest: Fail
243 GenericDeepTest: Fail 243 GenericDeepTest: Fail
244 GenericInstanceofTest: Fail 244 GenericInstanceofTest: Fail
245 GenericSyntaxTest: Fail 245 GenericSyntaxTest: Fail
246 GenericTest: Fail 246 GenericTest: Fail
247 GenericsTest: Fail 247 GenericsTest: Fail
248 GetterClosureExecutionOrderTest: Pass # TODO(jmesserly): I don't think this is r eally passing in the static case 248 GetterClosureExecutionOrderTest: Pass # TODO(jmesserly): I don't think this is r eally passing in the static case
249 ImplicitScopeTest: Fail 249 ImplicitScopeTest: Fail
250 ImpliedInterfaceTest: Fail 250 ImpliedInterfaceTest: Fail
251 IncrOpTest: Fail 251 IncrOpTest: Fail
252 InstanceofTest: Fail
253 Instanceof2Test: Fail 252 Instanceof2Test: Fail
254 InterfaceFactory3NegativeTest: Fail 253 InterfaceFactory3NegativeTest: Fail
255 IsNotClass4NegativeTest: Fail 254 IsNotClass4NegativeTest: Fail
256 LabelTest: Fail 255 LabelTest: Fail
257 Library1NegativeTest: Fail # issue with test see #354 256 Library1NegativeTest: Fail # issue with test see #354
258 Library4NegativeTest: Fail # issue with test see #354 257 Library4NegativeTest: Fail # issue with test see #354
259 Library5NegativeTest: Fail # issue with test see #354 258 Library5NegativeTest: Fail # issue with test see #354
260 Library6NegativeTest: Fail # issue with test see #354 259 Library6NegativeTest: Fail # issue with test see #354
261 ListLiteral3Test: Fail # vm and frog throw different exceptions 260 ListLiteral3Test: Fail # vm and frog throw different exceptions
262 ListLiteral4Test: Fail # missing type checks on index operations 261 ListLiteral4Test: Fail # missing type checks on index operations
263 ListTest: Fail # array bound checks not implemented 262 ListTest: Fail # array bound checks not implemented
264 LocalFunction3Test: Fail 263 LocalFunction3Test: Fail
265 LocalFunctionTest: Fail 264 LocalFunctionTest: Fail
266 ManyGenericInstanceofTest: Fail 265 ManyGenericInstanceofTest: Fail
267 MapLiteral4Test: Fail # missing checks on map index operations 266 MapLiteral4Test: Fail # missing checks on map index operations
268 MathTest: Fail 267 MathTest: Fail
269 MethodOverrideTest: Fail 268 MethodOverrideTest: Fail
270 NamedParametersPassingFalsyTest: Fail 269 NamedParametersPassingFalsyTest: Fail
271 NamedParametersTypeTest: Fail 270 NamedParametersTypeTest: Fail
272 NamedParametersWithConversionsTest: Fail 271 NamedParametersWithConversionsTest: Fail
273 NonConstSuperNegativeTest: Fail 272 NonConstSuperNegativeTest: Fail
274 NonParameterizedFactoryTest: Fail 273 NonParameterizedFactoryTest: Fail
275 NonParameterizedFactory2Test: Fail 274 NonParameterizedFactory2Test: Fail
276 NullPointerExceptionTest: Fail 275 NullPointerExceptionTest: Fail
277 NullTest: Fail 276 NullTest: Fail
278 NullToStringTest: Fail 277 NullToStringTest: Fail
279 NumbersTest: Fail 278 NumbersTest: Fail
280 NumberSyntaxTest: Fail
281 OverrideMethodWithFieldTest/01: Fail 279 OverrideMethodWithFieldTest/01: Fail
282 OverrideFieldTest/01: Fail 280 OverrideFieldTest/01: Fail
283 OverrideFieldTest/04: Fail 281 OverrideFieldTest/04: Fail
284 ParameterInitializer5NegativeTest: Fail # Issue 581 282 ParameterInitializer5NegativeTest: Fail # Issue 581
285 Prefix3NegativeTest: Fail 283 Prefix3NegativeTest: Fail
286 Prefix7NegativeTest: Fail 284 Prefix7NegativeTest: Fail
287 Prefix8NegativeTest: Fail 285 Prefix8NegativeTest: Fail
288 Prefix9NegativeTest: Fail 286 Prefix9NegativeTest: Fail
289 Prefix11NegativeTest: Fail 287 Prefix11NegativeTest: Fail
290 Prefix16NegativeTest: Fail 288 Prefix16NegativeTest: Fail
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 349
352 350
353 [ $arch == x64 ] 351 [ $arch == x64 ]
354 *: Skip 352 *: Skip
355 353
356 [ $arch == simarm ] 354 [ $arch == simarm ]
357 *: Skip 355 *: Skip
358 356
359 [ $arch == arm ] 357 [ $arch == arm ]
360 *: Skip 358 *: Skip
OLDNEW
« frog/value.dart ('K') | « tests/isolate/isolate.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698