Chromium Code Reviews| 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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 379 | 379 |
| 380 | 380 |
| 381 [ $arch == simarm ] | 381 [ $arch == simarm ] |
| 382 *: Skip | 382 *: Skip |
| 383 | 383 |
| 384 [ $arch == arm ] | 384 [ $arch == arm ] |
| 385 *: Skip | 385 *: Skip |
| 386 | 386 |
| 387 [ $compiler == dart2dart ] | 387 [ $compiler == dart2dart ] |
| 388 factory_redirection2_test/01: Fail # Inherited from dart2js. | 388 factory_redirection2_test/01: Fail # Inherited from dart2js. |
| 389 const_factory_redirection_test: Fail # TRIAGE | 389 const_factory_redirection_test: Fail # http://dartbug.com/6894 |
| 390 redirecting_factory_infinite_steps_test/01: Fail, Pass # TRIAGE: fails in minifi ed mode. http://dartbug.com/6603 | |
| 391 | 390 |
| 392 many_overridden_no_such_method_test: Fail, Pass # TRIAGE: fails in minified mode | 391 many_overridden_no_such_method_test: Fail, Pass # Fails in minified mode, test d epends on method names. |
|
antonm
2012/11/23 12:46:51
please, add Ok modifier to this expectation and on
Roman
2012/11/23 13:20:47
Done.
| |
| 393 overridden_no_such_method_test: Fail, Pass # TRIAGE: fails in minified mode | 392 overridden_no_such_method_test: Fail, Pass # Fails in minified mode, test depend s on method names. |
| 393 | |
| 394 # Calling unresolved class constructor: | 394 # Calling unresolved class constructor: |
| 395 # call_constructor_on_unresolvable_class_test/07: Fail | |
| 396 call_nonexistent_constructor_test: Fail | 395 call_nonexistent_constructor_test: Fail |
| 397 | 396 |
| 398 bad_override_test/01: Fail | 397 bad_override_test/01: Fail |
| 399 bad_override_test/02: Fail | 398 bad_override_test/02: Fail |
| 400 illegal_invocation_test/01: Fail, OK # Typedef literals are expressions now. | 399 illegal_invocation_test/01: Fail, OK # Typedef literals are expressions now. |
| 401 illegal_invocation_test/04: Fail, OK # Class literals are expressions now. | 400 illegal_invocation_test/04: Fail, OK # Class literals are expressions now. |
| 402 illegal_invocation_test/05: Fail, OK # Type variables are expressions now. | 401 illegal_invocation_test/05: Fail, OK # Type variables are expressions now. |
| 403 | 402 |
| 404 first_class_types_constants_test: Fail # Issue 6282 | 403 first_class_types_constants_test: Fail # Issue 6282 |
| 405 | 404 |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 591 compile_time_constant_checked3_test/03: Fail, OK | 590 compile_time_constant_checked3_test/03: Fail, OK |
| 592 compile_time_constant_checked3_test/04: Fail, OK | 591 compile_time_constant_checked3_test/04: Fail, OK |
| 593 compile_time_constant_checked3_test/05: Fail, OK | 592 compile_time_constant_checked3_test/05: Fail, OK |
| 594 compile_time_constant_checked3_test/06: Fail, OK | 593 compile_time_constant_checked3_test/06: Fail, OK |
| 595 | 594 |
| 596 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 | 595 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 |
| 597 | 596 |
| 598 # This is a VM error when the compiled code is run. | 597 # This is a VM error when the compiled code is run. |
| 599 invocation_mirror_test: Fail # issue 3326, 3622. | 598 invocation_mirror_test: Fail # issue 3326, 3622. |
| 600 invocation_mirror_indirect_test: Fail # issue 3326, 3622. | 599 invocation_mirror_indirect_test: Fail # issue 3326, 3622. |
| OLD | NEW |