| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 # DartC or Frog specific tests that should not be run by the VM | 52 # DartC or Frog specific tests that should not be run by the VM |
| 53 *dartc_test: Skip | 53 *dartc_test: Skip |
| 54 *dartc_negative_test: Skip | 54 *dartc_negative_test: Skip |
| 55 *frog_test: Skip | 55 *frog_test: Skip |
| 56 *frog_negative_test: Skip | 56 *frog_negative_test: Skip |
| 57 | 57 |
| 58 [ $compiler == none && $mode == debug ] | 58 [ $compiler == none && $mode == debug ] |
| 59 gc_test: Skip # Takes too long. | 59 gc_test: Skip # Takes too long. |
| 60 | 60 |
| 61 [ $compiler == dartc ] | 61 [ $compiler == dartc ] |
| 62 abstract_syntax_test/01: Fail | |
| 63 application_negative_test: Fail | 62 application_negative_test: Fail |
| 64 assert_keyword_negative_test: Fail | 63 assert_keyword_negative_test: Fail |
| 65 assert_test: Fail # Uses AssertError class. Bug 4385894. | 64 assert_test: Fail # Uses AssertError class. Bug 4385894. |
| 66 assign_instance_method_negative_test: Fail | 65 assign_instance_method_negative_test: Fail |
| 67 bad_named_parameters_test: Fail # Issue 1941 | 66 bad_named_parameters_test: Fail # Issue 1941 |
| 68 bad_named_parameters2_test: Fail # Issue 1941 | 67 bad_named_parameters2_test: Fail # Issue 1941 |
| 69 body_less_constructor_wrong_arg_negative_test: Fail | 68 body_less_constructor_wrong_arg_negative_test: Fail |
| 70 call_operator_test: Pass # Issue 1355 | 69 call_operator_test: Pass # Issue 1355 |
| 71 char_escape_test: Pass # Issue 1654 | 70 char_escape_test: Pass # Issue 1654 |
| 72 closure_call_wrong_argument_count_negative_test: Fail | 71 closure_call_wrong_argument_count_negative_test: Fail |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 constructor_redirect2_negative_test: Skip # Undiagnosed infinite loop. | 444 constructor_redirect2_negative_test: Skip # Undiagnosed infinite loop. |
| 446 | 445 |
| 447 [ $compiler == frog && $runtime == none ] | 446 [ $compiler == frog && $runtime == none ] |
| 448 *: Skip | 447 *: Skip |
| 449 | 448 |
| 450 [ $arch == simarm ] | 449 [ $arch == simarm ] |
| 451 *: Skip | 450 *: Skip |
| 452 | 451 |
| 453 [ $arch == arm ] | 452 [ $arch == arm ] |
| 454 *: Skip | 453 *: Skip |
| OLD | NEW |