| OLD | NEW |
| 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 [ $browser ] | 320 [ $browser ] |
| 321 | 321 |
| 322 | 322 |
| 323 [ $arch == simarm ] | 323 [ $arch == simarm ] |
| 324 *: Skip | 324 *: Skip |
| 325 | 325 |
| 326 [ $arch == arm ] | 326 [ $arch == arm ] |
| 327 *: Skip | 327 *: Skip |
| 328 | 328 |
| 329 [ $compiler == dart2dart ] | 329 [ $compiler == dart2dart ] |
| 330 non_parameterized_factory_test: Fail # Factory for another interface. |
| 331 factory5_test: Fail # Factory for another interface. |
| 332 factory4_test: Fail # Factory for another interface. |
| 333 factory3_test: Fail # Factory for another interface. |
| 334 factory2_test: Fail # Factory for another interface. |
| 335 interface_factory_multi_test: Fail |
| 336 factory_negative_test: Fail |
| 337 default_factory_test: Fail |
| 338 factory3_negative_test: Fail |
| 339 interface_factory_test: Fail |
| 340 factory2_negative_test: Fail |
| 341 type_variable_scope_test: Fail |
| 342 factory_implementation_test: Fail |
| 343 non_parameterized_factory2_test: Fail |
| 344 factory_negative_test: Fail |
| 345 factory3_negative_test: Fail |
| 346 factory2_negative_test: Fail |
| 347 |
| 330 class_literal_test/05: Fail # http://dartbug.com/5519 | 348 class_literal_test/05: Fail # http://dartbug.com/5519 |
| 331 class_literal_test/10: Fail # http://dartbug.com/5519 | 349 class_literal_test/10: Fail # http://dartbug.com/5519 |
| 332 class_literal_test/11: Fail # http://dartbug.com/5519 | 350 class_literal_test/11: Fail # http://dartbug.com/5519 |
| 333 class_literal_test/12: Fail # http://dartbug.com/5519 | 351 class_literal_test/12: Fail # http://dartbug.com/5519 |
| 334 class_literal_test/17: Fail # http://dartbug.com/5519 | 352 class_literal_test/17: Fail # http://dartbug.com/5519 |
| 335 class_literal_test/18: Fail # http://dartbug.com/5519 | 353 class_literal_test/18: Fail # http://dartbug.com/5519 |
| 336 class_literal_test/19: Fail # http://dartbug.com/5519 | 354 class_literal_test/19: Fail # http://dartbug.com/5519 |
| 337 class_literal_test/20: Fail # http://dartbug.com/5519 | 355 class_literal_test/20: Fail # http://dartbug.com/5519 |
| 338 class_literal_test/22: Fail # http://dartbug.com/5519 | 356 class_literal_test/22: Fail # http://dartbug.com/5519 |
| 339 class_literal_test/25: Fail # http://dartbug.com/5519 | 357 class_literal_test/25: Fail # http://dartbug.com/5519 |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 | 532 |
| 515 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 | 533 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 |
| 516 | 534 |
| 517 call_through_getter_test: Fail # issue 6130 | 535 call_through_getter_test: Fail # issue 6130 |
| 518 call_through_null_getter_test: Fail # issue 6130 | 536 call_through_null_getter_test: Fail # issue 6130 |
| 519 local_function_test: Fail # issue 6130 | 537 local_function_test: Fail # issue 6130 |
| 520 naming_test: Fail # issue 6130 | 538 naming_test: Fail # issue 6130 |
| 521 | 539 |
| 522 # This is a VM error when the compiled code is run. | 540 # This is a VM error when the compiled code is run. |
| 523 invocation_mirror_test: Fail # issue 3326, 3622. | 541 invocation_mirror_test: Fail # issue 3326, 3622. |
| OLD | NEW |