Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Side by Side Diff: tests/language/language_dart2js.status

Issue 10837359: Language tests updated to use const instead of final. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Instance fields are never const. Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 [ $compiler == dart2js ] 44 [ $compiler == dart2js ]
45 implicit_this_test/03: Fail # TODO(ahe): Handle abstract getters. 45 implicit_this_test/03: Fail # TODO(ahe): Handle abstract getters.
46 implicit_this_test/04: Fail # TODO(ahe): Handle abstract getters. 46 implicit_this_test/04: Fail # TODO(ahe): Handle abstract getters.
47 property_field_override_test: Fail # TODO(ahe): Handle abstract getters. 47 property_field_override_test: Fail # TODO(ahe): Handle abstract getters.
48 48
49 getter_declaration_negative_test: Fail # This will be fixed when dart2js reject old getter syntax. 49 getter_declaration_negative_test: Fail # This will be fixed when dart2js reject old getter syntax.
50 50
51 function_type_this_parameter_test: Crash # Issue 4417. 51 function_type_this_parameter_test: Crash # Issue 4417.
52 compile_time_constant8_test: Fail # We don't take the generic type into account yet. 52 compile_time_constant8_test: Fail # We don't take the generic type into account yet.
53 53
54 # const variables are not regarded as compile-time constants:
55 adjacent_const_string_literals_test: Fail
ahe 2012/08/22 10:14:45 Please copy the comment so each line looks like:
Johnni Winther 2012/08/22 15:35:43 Ignored, since it will be removed by the next CL.
56 call_through_getter_test: Fail
57 compile_time_constant2_test: Fail
58 compile_time_constant3_test: Fail
59 compile_time_constant5_test: Fail
60 compile_time_constant6_test: Fail
61 compile_time_constant_a_test: Fail
62 compile_time_constant_j_test: Fail
63 compile_time_constant_o_test: Fail
64 const_init_test: Fail
65 ct_const3_test: Fail
66 ct_const4_test: Fail
67 issue4515170_test: Fail
68 list_literal2_test: Fail
69 string_interpolation8_test: Fail
70 top_level_var_test: Fail
71
54 # Fail "const EmptyLink<Element>" must be a compile-time constant if unchecked o n linux. 72 # Fail "const EmptyLink<Element>" must be a compile-time constant if unchecked o n linux.
55 # Crash infinite loop on Mac and dart2js checked mode on linux. 73 # Crash infinite loop on Mac and dart2js checked mode on linux.
56 function_type_alias6_test: Crash, Fail 74 function_type_alias6_test: Crash, Fail
57 75
58 static_initializer_type_error_test: Fail # Checked mode not supported. 76 static_initializer_type_error_test: Fail # Checked mode not supported.
59 77
60 # Compilation errors. 78 # Compilation errors.
61 const_var_test: Fail # Map literals take 2 type arguments. 79 const_var_test: Fail # Map literals take 2 type arguments.
62 map_literal3_test: Fail # Map literals take 2 type arguments. 80 map_literal3_test: Fail # Map literals take 2 type arguments.
63 ct_const_test: Fail # We don't take the generic type into account yet. 81 ct_const_test: Fail # We don't take the generic type into account yet.
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 [ $compiler == dart2js && $runtime == safari ] 313 [ $compiler == dart2js && $runtime == safari ]
296 arithmetic_test: Skip # BUG(3492): Times out. 314 arithmetic_test: Skip # BUG(3492): Times out.
297 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan ce of 'TypeError' 315 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan ce of 'TypeError'
298 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I nstance of 'TypeError' 316 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I nstance of 'TypeError'
299 closure3_test: Fail # Uncaught error: Instance of 'TypeError' 317 closure3_test: Fail # Uncaught error: Instance of 'TypeError'
300 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' 318 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError'
301 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' 319 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError'
302 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' 320 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError'
303 naming_test: Fail 321 naming_test: Fail
304 322
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698