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

Side by Side Diff: tests/language_2/language_2.status

Issue 2989453002: Add support for compiling Dart via the FE in dart2js. (Closed)
Patch Set: update status Created 3 years, 5 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
OLDNEW
1 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2017, 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 # The VM and dart2js do not implement the Dart 2.0 static type errors yet. 5 # The VM and dart2js do not implement the Dart 2.0 static type errors yet.
6 # Analyzer does, but only when "--strong" is used. 6 # Analyzer does, but only when "--strong" is used.
7 [ $runtime == vm || $compiler == dart2js || $runtime == dart_precompiled || ($co mpiler == dart2analyzer && ! $strong) ] 7 [ $runtime == vm || $compiler == dart2js || $runtime == dart_precompiled || ($co mpiler == dart2analyzer && ! $strong) ]
8 abstract_beats_arguments_test: MissingCompileTimeError 8 abstract_beats_arguments_test: MissingCompileTimeError
9 abstract_exact_selector_test/01: MissingCompileTimeError 9 abstract_exact_selector_test/01: MissingCompileTimeError
10 abstract_factory_constructor_test/00: MissingCompileTimeError 10 abstract_factory_constructor_test/00: MissingCompileTimeError
11 abstract_getter_test/01: MissingCompileTimeError 11 abstract_getter_test/01: MissingCompileTimeError
12 abstract_syntax_test/00: MissingCompileTimeError 12 abstract_syntax_test/00: MissingCompileTimeError
13 13
14 [ $compiler == dart2js ] 14 [ $compiler == dart2js && ! $dart2js_with_kernel ]
15 accessor_conflict_export2_test: Crash # Issue 25626 15 accessor_conflict_export2_test: Crash # Issue 25626
16 accessor_conflict_export_test: Crash # Issue 25626 16 accessor_conflict_export_test: Crash # Issue 25626
17 17
18 [ $compiler == dart2js && $runtime != none ] 18 [ $compiler == dart2js && $runtime != none && ! $dart2js_with_kernel ]
19 accessor_conflict_import2_test: RuntimeError # Issue 25626 19 accessor_conflict_import2_test: RuntimeError # Issue 25626
20 accessor_conflict_import_prefixed2_test: RuntimeError # Issue 25626 20 accessor_conflict_import_prefixed2_test: RuntimeError # Issue 25626
21 accessor_conflict_import_prefixed_test: RuntimeError # Issue 25626 21 accessor_conflict_import_prefixed_test: RuntimeError # Issue 25626
22 accessor_conflict_import_test: RuntimeError # Issue 25626 22 accessor_conflict_import_test: RuntimeError # Issue 25626
23 23
24 [ $strong && ($compiler == dartdevc || $compiler == dart2analyzer) ] 24 [ $strong && ($compiler == dartdevc || $compiler == dart2analyzer) ]
25 accessor_conflict_export2_test: CompileTimeError # Issue 25626 25 accessor_conflict_export2_test: CompileTimeError # Issue 25626
26 accessor_conflict_export_test: CompileTimeError # Issue 25626 26 accessor_conflict_export_test: CompileTimeError # Issue 25626
27 accessor_conflict_import2_test: CompileTimeError # Issue 25626 27 accessor_conflict_import2_test: CompileTimeError # Issue 25626
28 accessor_conflict_import_prefixed2_test: CompileTimeError # Issue 25626 28 accessor_conflict_import_prefixed2_test: CompileTimeError # Issue 25626
29 accessor_conflict_import_prefixed_test: CompileTimeError # Issue 25626 29 accessor_conflict_import_prefixed_test: CompileTimeError # Issue 25626
30 accessor_conflict_import_test: CompileTimeError # Issue 25626 30 accessor_conflict_import_test: CompileTimeError # Issue 25626
31 31
32 [ ! $strong && $compiler == dart2analyzer ] 32 [ ! $strong && $compiler == dart2analyzer ]
33 accessor_conflict_export2_test: StaticWarning # Issue 25626 33 accessor_conflict_export2_test: StaticWarning # Issue 25626
34 accessor_conflict_export_test: StaticWarning # Issue 25626 34 accessor_conflict_export_test: StaticWarning # Issue 25626
35 accessor_conflict_import2_test: StaticWarning # Issue 25626 35 accessor_conflict_import2_test: StaticWarning # Issue 25626
36 accessor_conflict_import_prefixed2_test: StaticWarning # Issue 25626 36 accessor_conflict_import_prefixed2_test: StaticWarning # Issue 25626
37 accessor_conflict_import_prefixed_test: StaticWarning # Issue 25626 37 accessor_conflict_import_prefixed_test: StaticWarning # Issue 25626
38 accessor_conflict_import_test: StaticWarning # Issue 25626 38 accessor_conflict_import_test: StaticWarning # Issue 25626
39 39
40 [ $compiler == dart2analyzer && ! $strong ] 40 [ $compiler == dart2analyzer && ! $strong ]
41 generic_methods_generic_function_result_test/01: MissingCompileTimeError # Issue #30207 41 generic_methods_generic_function_result_test/01: MissingCompileTimeError # Issue #30207
42 42
43 [ $compiler == dart2analyzer && $strong ] 43 [ $compiler == dart2analyzer && $strong ]
44 generic_methods_generic_function_result_test/none: CompileTimeError # Issue #302 07 44 generic_methods_generic_function_result_test/none: CompileTimeError # Issue #302 07
45 45
46 [ $compiler == dart2js || $compiler == dartk || $compiler == dartdevc ] 46 [ $compiler == dart2js || $compiler == dartk || $compiler == dartdevc ]
47 generic_methods_generic_function_result_test/none: CompileTimeError # Issue #302 08 47 generic_methods_generic_function_result_test/none: CompileTimeError # Issue #302 08
48
49 [ $compiler == dart2js && $dart2js_with_kernel ]
50 aborting_switch_case_test: Crash
51 abstract_exact_selector_test/none: Crash
52 abstract_getter_test/01: Crash
53 abstract_method_test: Crash
54 abstract_object_method_test: Crash
55 arg_param_trailing_comma_test/none: Crash
56 arithmetic_test: Crash
57
58 [ $compiler == dart2js && $dart2js_with_kernel && $host_checked ]
59 abstract_exact_selector_test/01: Crash
OLDNEW
« pkg/compiler/lib/src/kernel/front_end_adapter.dart ('K') | « tests/language/language_dart2js.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698