Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 248 IncrOpTest: Fail | 248 IncrOpTest: Fail |
| 249 Instanceof2Test: Fail | 249 Instanceof2Test: Fail |
| 250 InstanceofTest: Fail | 250 InstanceofTest: Fail |
| 251 InterfaceFactory3NegativeTest: Fail | 251 InterfaceFactory3NegativeTest: Fail |
| 252 IsNotClass4NegativeTest: Fail | 252 IsNotClass4NegativeTest: Fail |
| 253 LabelTest: Fail | 253 LabelTest: Fail |
| 254 Library1NegativeTest: Fail # issue with test see #354 | 254 Library1NegativeTest: Fail # issue with test see #354 |
| 255 Library4NegativeTest: Fail # issue with test see #354 | 255 Library4NegativeTest: Fail # issue with test see #354 |
| 256 Library5NegativeTest: Fail # issue with test see #354 | 256 Library5NegativeTest: Fail # issue with test see #354 |
| 257 Library6NegativeTest: Fail # issue with test see #354 | 257 Library6NegativeTest: Fail # issue with test see #354 |
| 258 ListLiteral1NegativeTest: Fail # Issue 220 | 258 ListLiteral3Test: Fail # vm and frog throw different exceptions |
|
Jennifer Messerly
2011/12/08 02:13:26
What are the different exceptions?
Siggi Cherem (dart-lang)
2011/12/08 23:02:15
vm: UnsupportedOperationException
frog: IllegalAcc
| |
| 259 ListLiteral2NegativeTest: Fail # Issue 220 | 259 ListLiteral4Test: Fail # missing type checks on index operations |
| 260 ListLiteral3Test: Fail # Issue 220 | |
| 261 ListLiteral4Test: Fail # Issue 220 | |
| 262 ListTest: Fail # array bound checks not implemented | 260 ListTest: Fail # array bound checks not implemented |
| 263 LocalFunction3Test: Fail | 261 LocalFunction3Test: Fail |
| 264 LocalFunctionTest: Fail | 262 LocalFunctionTest: Fail |
| 265 ManyGenericInstanceofTest: Fail | 263 ManyGenericInstanceofTest: Fail |
| 266 MapLiteral1NegativeTest: Fail # Issue 221 | 264 MapLiteral4Test: Fail # missing checks on map index operations |
| 267 MapLiteral2NegativeTest: Fail # Issue 221 | |
| 268 MapLiteral4Test: Fail # Issue 221 | |
| 269 MathTest: Fail | 265 MathTest: Fail |
| 270 MethodBindingTest: Fail | 266 MethodBindingTest: Fail |
| 271 MethodOverrideTest: Fail | 267 MethodOverrideTest: Fail |
| 272 NamedParametersPassingFalsyTest: Fail | 268 NamedParametersPassingFalsyTest: Fail |
| 273 NamedParametersTypeTest: Fail | 269 NamedParametersTypeTest: Fail |
| 274 NamedParametersWithConversionsTest: Fail | 270 NamedParametersWithConversionsTest: Fail |
| 275 NativeLibrarySameNameUsedFrogTest: Fail # ReferenceError: I is not defined. | 271 NativeLibrarySameNameUsedFrogTest: Fail # ReferenceError: I is not defined. |
| 276 NonConstSuperNegativeTest: Fail | 272 NonConstSuperNegativeTest: Fail |
| 277 NullPointerExceptionTest: Fail | 273 NullPointerExceptionTest: Fail |
| 278 NullTest: Fail | 274 NullTest: Fail |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 367 StaticField2RunNegativeTest: Fail | 363 StaticField2RunNegativeTest: Fail |
| 368 | 364 |
| 369 [ $arch == x64 ] | 365 [ $arch == x64 ] |
| 370 *: Skip | 366 *: Skip |
| 371 | 367 |
| 372 [ $arch == simarm ] | 368 [ $arch == simarm ] |
| 373 *: Skip | 369 *: Skip |
| 374 | 370 |
| 375 [ $arch == arm ] | 371 [ $arch == arm ] |
| 376 *: Skip | 372 *: Skip |
| OLD | NEW |