| 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 [ $compiler == dart2js ] | 5 [ $compiler == dart2js ] |
| 6 class_test: Fail | 6 class_test: Fail |
| 7 statements_test: Fail | 7 statements_test: Fail |
| 8 typed_locals_test: Fail | 8 typed_locals_test: Fail |
| 9 no_such_method_test: Fail # Wrong Invocation.memberName. | 9 no_such_method_test: Fail # Wrong Invocation.memberName. |
| 10 constant_javascript_semantics4_test: Fail, OK | 10 constant_javascript_semantics4_test: Fail, OK |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 62 |
| 63 [ $compiler == none && $runtime == vm ] | 63 [ $compiler == none && $runtime == vm ] |
| 64 invalid_annotation_test/01: MissingCompileTimeError, OK # vm is lazy | 64 invalid_annotation_test/01: MissingCompileTimeError, OK # vm is lazy |
| 65 lookup_map/dead_entry_through_mirrors_test: SkipByDesign # Test for tree-shaking
, vm never tree-shakes | 65 lookup_map/dead_entry_through_mirrors_test: SkipByDesign # Test for tree-shaking
, vm never tree-shakes |
| 66 | 66 |
| 67 [ $compiler == dart2js && $cps_ir == false ] | 67 [ $compiler == dart2js && $cps_ir == false ] |
| 68 big_allocation_expression_test: Crash # Issue 24635 | 68 big_allocation_expression_test: Crash # Issue 24635 |
| 69 | 69 |
| 70 [ $compiler == dart2js && $cps_ir ] | 70 [ $compiler == dart2js && $cps_ir ] |
| 71 async_stacktrace_test/asyncStar: Crash # (foo()async*{try {tr... cannot handle
sync*/async* functions | 71 async_stacktrace_test/asyncStar: Crash # (foo()async*{try {tr... cannot handle
sync*/async* functions |
| 72 |
| 73 [ $compiler == dart2js && $cps_ir && $checked ] |
| 74 *: Skip # `assert` not implemented, 75% of the tests fail. |
| OLD | NEW |