| 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 || $compiler == dart2dart ] | 5 [ $compiler == dart2js || $compiler == dart2dart ] |
| 6 # VM specific tests that should not be run by dart2js. | 6 # VM specific tests that should not be run by dart2js. |
| 7 *vm_test: Skip | 7 *vm_test: Skip |
| 8 *vm_negative_test: Skip | 8 *vm_negative_test: Skip |
| 9 | 9 |
| 10 [ $compiler == dart2js && $checked ] | 10 [ $compiler == dart2js && $checked ] |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 function_type_test: Fail # does not detect type error in checked mode. | 35 function_type_test: Fail # does not detect type error in checked mode. |
| 36 function_malformed_result_type_test: Fail # does not detect type error in checke
d mode. | 36 function_malformed_result_type_test: Fail # does not detect type error in checke
d mode. |
| 37 void_type_test: Fail # does not detect type error in checked mode. | 37 void_type_test: Fail # does not detect type error in checked mode. |
| 38 | 38 |
| 39 arithmetic_test: Fail | 39 arithmetic_test: Fail |
| 40 | 40 |
| 41 [ $compiler == dart2js && $unchecked ] | 41 [ $compiler == dart2js && $unchecked ] |
| 42 assertion_test: Fail | 42 assertion_test: Fail |
| 43 | 43 |
| 44 [ $compiler == dart2js ] | 44 [ $compiler == dart2js ] |
| 45 top_level_getter_arrow_syntax_test: Fail # TODO(ahe): I'm working on this. |
| 46 getters_setters_test: Fail # TODO(ahe): I'm working on this. |
| 47 |
| 45 function_type_this_parameter_test: Crash # Issue 4417. | 48 function_type_this_parameter_test: Crash # Issue 4417. |
| 46 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. | 49 compile_time_constant8_test: Fail # We don't take the generic type into account
yet. |
| 47 | 50 |
| 48 # Fail "const EmptyLink<Element>" must be a compile-time constant if unchecked o
n linux. | 51 # Fail "const EmptyLink<Element>" must be a compile-time constant if unchecked o
n linux. |
| 49 # Crash infinite loop on Mac and dart2js checked mode on linux. | 52 # Crash infinite loop on Mac and dart2js checked mode on linux. |
| 50 function_type_alias6_test: Crash, Fail | 53 function_type_alias6_test: Crash, Fail |
| 51 | 54 |
| 52 static_initializer_type_error_test: Fail # Checked mode not supported. | 55 static_initializer_type_error_test: Fail # Checked mode not supported. |
| 53 | 56 |
| 54 # Compilation errors. | 57 # Compilation errors. |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 [ $compiler == dart2js && $runtime == safari ] | 292 [ $compiler == dart2js && $runtime == safari ] |
| 290 arithmetic_test: Skip # BUG(3492): Times out. | 293 arithmetic_test: Skip # BUG(3492): Times out. |
| 291 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' | 294 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 292 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 295 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 293 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 296 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 294 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 297 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 295 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 298 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 296 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 299 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| 297 naming_test: Fail | 300 naming_test: Fail |
| 298 | 301 |
| OLD | NEW |