| 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 # VM specific tests that should not be run by dart2js. | 5 # VM specific tests that should not be run by dart2js. |
| 6 [ $compiler == dart2js ] | 6 [ $compiler == dart2js ] |
| 7 vm/*: Skip # Issue 12699 | 7 vm/*: Skip # Issue 12699 |
| 8 | 8 |
| 9 [ $compiler == dart2js && ! $dart2js_with_kernel ] | 9 [ $compiler == dart2js && ! $dart2js_with_kernel ] |
| 10 enum_test: Fail # Issue 28340 | 10 enum_test: Fail # Issue 28340 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 library_env_test/has_no_io_support: RuntimeError, OK | 34 library_env_test/has_no_io_support: RuntimeError, OK |
| 35 library_env_test/has_no_mirror_support: RuntimeError, OK | 35 library_env_test/has_no_mirror_support: RuntimeError, OK |
| 36 | 36 |
| 37 duplicate_part_test/01: MissingCompileTimeError # Issue 27517 | 37 duplicate_part_test/01: MissingCompileTimeError # Issue 27517 |
| 38 | 38 |
| 39 | 39 |
| 40 stacktrace_demangle_ctors_test: Fail # dart2js stack traces are not always compl
iant. | 40 stacktrace_demangle_ctors_test: Fail # dart2js stack traces are not always compl
iant. |
| 41 | 41 |
| 42 syntax_test/none: CompileTimeError # Issue #30176. | 42 syntax_test/none: CompileTimeError # Issue #30176. |
| 43 | 43 |
| 44 [ $compiler == dart2js && $csp && $browser ] |
| 45 conditional_import_string_test: Fail # Issue 30615 |
| 46 conditional_import_test: Fail # Issue 30615 |
| 47 |
| 44 [ $compiler == dart2js && $fast_startup && ! $dart2js_with_kernel ] | 48 [ $compiler == dart2js && $fast_startup && ! $dart2js_with_kernel ] |
| 45 const_evaluation_test/*: Fail # mirrors not supported | 49 const_evaluation_test/*: Fail # mirrors not supported |
| 46 deferred_constraints_constants_test/none: Fail # mirrors not supported | 50 deferred_constraints_constants_test/none: Fail # mirrors not supported |
| 47 deferred_constraints_constants_test/reference_after_load: Fail # mirrors not sup
ported | 51 deferred_constraints_constants_test/reference_after_load: Fail # mirrors not sup
ported |
| 48 deferred_constraints_constants_test: Pass # mirrors not supported, passes for th
e wrong reason | 52 deferred_constraints_constants_test: Pass # mirrors not supported, passes for th
e wrong reason |
| 49 enum_mirror_test: Fail # mirrors not supported | 53 enum_mirror_test: Fail # mirrors not supported |
| 50 field_increment_bailout_test: Fail # mirrors not supported | 54 field_increment_bailout_test: Fail # mirrors not supported |
| 51 instance_creation_in_function_annotation_test: Fail # mirrors not supported | 55 instance_creation_in_function_annotation_test: Fail # mirrors not supported |
| 52 invocation_mirror2_test: Fail # mirrors not supported | 56 invocation_mirror2_test: Fail # mirrors not supported |
| 53 invocation_mirror_invoke_on2_test: Fail # mirrors not supported | 57 invocation_mirror_invoke_on2_test: Fail # mirrors not supported |
| (...skipping 1724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1778 type_variable_conflict2_test/05: RuntimeError | 1782 type_variable_conflict2_test/05: RuntimeError |
| 1779 type_variable_conflict2_test/07: RuntimeError | 1783 type_variable_conflict2_test/07: RuntimeError |
| 1780 type_variable_conflict2_test/09: RuntimeError | 1784 type_variable_conflict2_test/09: RuntimeError |
| 1781 type_variable_field_initializer2_test: Crash # Assertion failure: Runtime type i
nformation not available for type_variable_local(A.T) in j:constructor(B.). | 1785 type_variable_field_initializer2_test: Crash # Assertion failure: Runtime type i
nformation not available for type_variable_local(A.T) in j:constructor(B.). |
| 1782 type_variable_field_initializer_closure2_test: Crash # NoSuchMethodError: Class
'JClosureClass' has no instance getter 'methodElement'. | 1786 type_variable_field_initializer_closure2_test: Crash # NoSuchMethodError: Class
'JClosureClass' has no instance getter 'methodElement'. |
| 1783 type_variable_field_initializer_closure_test: Crash # NoSuchMethodError: Class '
JClosureClass' has no instance getter 'methodElement'. | 1787 type_variable_field_initializer_closure_test: Crash # NoSuchMethodError: Class '
JClosureClass' has no instance getter 'methodElement'. |
| 1784 type_variable_field_initializer_test: Crash # Assertion failure: Runtime type in
formation not available for type_variable_local(A.T) in j:constructor(B.). | 1788 type_variable_field_initializer_test: Crash # Assertion failure: Runtime type in
formation not available for type_variable_local(A.T) in j:constructor(B.). |
| 1785 type_variable_function_type_test: RuntimeError | 1789 type_variable_function_type_test: RuntimeError |
| 1786 yieldstar_pause_test: Crash # NoSuchMethodError: The getter 'thisLocal' was call
ed on null. | 1790 yieldstar_pause_test: Crash # NoSuchMethodError: The getter 'thisLocal' was call
ed on null. |
| 1787 | 1791 |
| OLD | NEW |