Chromium Code Reviews| 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 19 matching lines...) Expand all Loading... | |
| 30 type_variable_scope_test/05: Fail | 30 type_variable_scope_test/05: Fail |
| 31 type_variable_scope2_test: Fail | 31 type_variable_scope2_test: Fail |
| 32 assign_top_method_negative_test: Pass # For the wrong reasons. | 32 assign_top_method_negative_test: Pass # For the wrong reasons. |
| 33 f_bounded_quantification_test/01: Fail | 33 f_bounded_quantification_test/01: Fail |
| 34 f_bounded_quantification_test/02: Fail | 34 f_bounded_quantification_test/02: Fail |
| 35 default_factory2_test/01: Fail # Type bounds for type variable not checked. | 35 default_factory2_test/01: Fail # Type bounds for type variable not checked. |
| 36 closure_type_test: Fail # does not detect type error in checked mode. | 36 closure_type_test: Fail # does not detect type error in checked mode. |
| 37 function_type_test: Fail # does not detect type error in checked mode. | 37 function_type_test: Fail # does not detect type error in checked mode. |
| 38 function_malformed_result_type_test: Fail # does not detect type error in checke d mode. | 38 function_malformed_result_type_test: Fail # does not detect type error in checke d mode. |
| 39 void_type_test: Fail # does not detect type error in checked mode. | 39 void_type_test: Fail # does not detect type error in checked mode. |
| 40 arithmetic_test: Fail | |
| 40 | 41 |
| 41 arithmetic_test: Fail | 42 # Issue 4932 |
| 43 type_parameter_test/01: Fail | |
|
floitsch
2012/09/05 13:50:34
put the issue number to the right of the failing t
ngeoffray
2012/09/05 15:36:11
Done.
| |
| 44 type_parameter_test/02: Fail | |
| 45 type_parameter_test/03: Fail | |
| 46 type_parameter_test/04: Fail | |
| 42 | 47 |
| 43 [ $compiler == dart2js && $unchecked ] | 48 [ $compiler == dart2js && $unchecked ] |
| 44 assertion_test: Fail | 49 assertion_test: Fail |
| 45 | 50 |
| 46 [ $compiler == dart2js ] | 51 [ $compiler == dart2js ] |
| 47 getter_declaration_negative_test: Fail # This will be fixed when dart2js reject old getter syntax. | 52 getter_declaration_negative_test: Fail # This will be fixed when dart2js reject old getter syntax. |
| 48 | 53 |
| 49 function_type_this_parameter_test: Crash # Issue 4417. | 54 function_type_this_parameter_test: Crash # Issue 4417. |
| 50 compile_time_constant_test/02: Fail, OK # By inlining the use-function we don't compile the static variable. | 55 compile_time_constant_test/02: Fail, OK # By inlining the use-function we don't compile the static variable. |
| 51 compile_time_constant8_test: Fail # We don't take the generic type into account yet. | 56 compile_time_constant8_test: Fail # We don't take the generic type into account yet. |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 285 | 290 |
| 286 [ $compiler == dart2js && $runtime == safari ] | 291 [ $compiler == dart2js && $runtime == safari ] |
| 287 arithmetic_test: Skip # BUG(3492): Times out. | 292 arithmetic_test: Skip # BUG(3492): Times out. |
| 288 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan ce of 'TypeError' | 293 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan ce of 'TypeError' |
| 289 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I nstance of 'TypeError' | 294 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I nstance of 'TypeError' |
| 290 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 295 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 291 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 296 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 292 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 297 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 293 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 298 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| 294 | 299 |
| OLD | NEW |