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 25 matching lines...) Expand all Loading... | |
| 36 void_type_test: Fail # does not detect type error in checked mode. | 36 void_type_test: Fail # does not detect type error in checked mode. |
| 37 | 37 |
| 38 type_parameter_test/01: Fail # Issue 4932 | 38 type_parameter_test/01: Fail # Issue 4932 |
| 39 type_parameter_test/02: Fail # Issue 4932 | 39 type_parameter_test/02: Fail # Issue 4932 |
| 40 type_parameter_test/03: Fail # Issue 4932 | 40 type_parameter_test/03: Fail # Issue 4932 |
| 41 type_parameter_test/04: Fail # Issue 4932 | 41 type_parameter_test/04: Fail # Issue 4932 |
| 42 | 42 |
| 43 [ $compiler == dart2js && $unchecked ] | 43 [ $compiler == dart2js && $unchecked ] |
| 44 assertion_test: Fail | 44 assertion_test: Fail |
| 45 | 45 |
| 46 [ $compiler == dart2js && $host_unchecked ] | |
| 47 metadata_test: Fail # Metadata on type parameters not supported. | |
|
ahe
2012/09/08 08:37:22
$host_unchecked is when dart2js is running on the
| |
| 48 | |
| 49 [ $compiler == dart2js && $host_checked ] | |
| 50 metadata_test: Crash # Metadata on type parameters not supported. | |
|
ahe
2012/09/08 08:37:22
$host_checked is when dart2js is running on the VM
ricow1
2012/09/08 19:26:08
I think that makes perfekt sense (since this is a
| |
| 51 | |
| 46 [ $compiler == dart2js ] | 52 [ $compiler == dart2js ] |
| 47 metadata_test: Fail # Metadata on type parameters not supported. | |
| 48 infinity_test: Fail # Issue 4984 | 53 infinity_test: Fail # Issue 4984 |
| 49 positive_bit_operations_test: Fail # (floitsch): This will be fixed when dart2js uses unsigned input for >>. | 54 positive_bit_operations_test: Fail # (floitsch): This will be fixed when dart2js uses unsigned input for >>. |
| 50 | 55 |
| 51 class_literal_test/03: Fail # Calling a nonexistent static is not a compile time error anymore. | 56 class_literal_test/03: Fail # Calling a nonexistent static is not a compile time error anymore. |
| 52 class_literal_test/04: Fail # Calling a nonexistent static is not a compile time error anymore. | 57 class_literal_test/04: Fail # Calling a nonexistent static is not a compile time error anymore. |
| 53 class_literal_test/08: Fail # Calling a nonexistent static is not a compile time error anymore. | 58 class_literal_test/08: Fail # Calling a nonexistent static is not a compile time error anymore. |
| 54 class_literal_test/09: Fail # Calling a nonexistent static is not a compile time error anymore. | 59 class_literal_test/09: Fail # Calling a nonexistent static is not a compile time error anymore. |
| 55 class_literal_test/15: Fail # Calling a nonexistent static is not a compile time error anymore. | 60 class_literal_test/15: Fail # Calling a nonexistent static is not a compile time error anymore. |
| 56 class_literal_test/16: Fail # Calling a nonexistent static is not a compile time error anymore. | 61 class_literal_test/16: Fail # Calling a nonexistent static is not a compile time error anymore. |
| 57 | 62 |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 309 | 314 |
| 310 [ $compiler == dart2js && $runtime == safari ] | 315 [ $compiler == dart2js && $runtime == safari ] |
| 311 arithmetic_test: Skip # BUG(3492): Times out. | 316 arithmetic_test: Skip # BUG(3492): Times out. |
| 312 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan ce of 'TypeError' | 317 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan ce of 'TypeError' |
| 313 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I nstance of 'TypeError' | 318 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I nstance of 'TypeError' |
| 314 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 319 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 315 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 320 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 316 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 321 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 317 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 322 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| 318 | 323 |
| OLD | NEW |