| 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 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 *: Skip | 323 *: Skip |
| 324 | 324 |
| 325 [ $runtime == safari && ($system == linux || $system == windows) ] | 325 [ $runtime == safari && ($system == linux || $system == windows) ] |
| 326 *: Skip | 326 *: Skip |
| 327 | 327 |
| 328 [ $browser ] | 328 [ $browser ] |
| 329 | 329 |
| 330 | 330 |
| 331 [ $compiler == dart2dart ] | 331 [ $compiler == dart2dart ] |
| 332 built_in_identifier_prefix_test: Fail # Inherited from dart2js. | 332 built_in_identifier_prefix_test: Fail # Inherited from dart2js. |
| 333 constructor_redirect2_test/03: Fail | |
| 334 constructor_initializer_test: Fail # VM issue | 333 constructor_initializer_test: Fail # VM issue |
| 335 factory3_test: Fail | 334 factory3_test: Fail |
| 336 type_checks_in_factory_method_test: Fail | 335 type_checks_in_factory_method_test: Fail |
| 337 | 336 |
| 338 many_overridden_no_such_method_test: Fail, Pass, OK # Fails in minified mode, te
st depends on method names. | 337 many_overridden_no_such_method_test: Fail, Pass, OK # Fails in minified mode, te
st depends on method names. |
| 339 overridden_no_such_method_test: Fail, Pass, OK # Fails in minified mode, test de
pends on method names. | 338 overridden_no_such_method_test: Fail, Pass, OK # Fails in minified mode, test de
pends on method names. |
| 340 | 339 |
| 341 on_catch_malformed_type_test: Fail # Issue 8601 | 340 on_catch_malformed_type_test: Fail # Issue 8601 |
| 342 | 341 |
| 343 # False positive compile-time error is masking expected compile-time error | 342 # False positive compile-time error is masking expected compile-time error |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 | 568 |
| 570 [ $arch == mips ] | 569 [ $arch == mips ] |
| 571 *: Skip | 570 *: Skip |
| 572 | 571 |
| 573 | 572 |
| 574 [ $arch == simmips ] | 573 [ $arch == simmips ] |
| 575 arithmetic_test: Crash # Too far relative branch. | 574 arithmetic_test: Crash # Too far relative branch. |
| 576 large_implicit_getter_test: Crash # Too far relative branch. | 575 large_implicit_getter_test: Crash # Too far relative branch. |
| 577 stack_overflow_test: Crash | 576 stack_overflow_test: Crash |
| 578 stack_overflow_stacktrace_test: Crash | 577 stack_overflow_stacktrace_test: Crash |
| OLD | NEW |