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

Unified Diff: tests/language_2/language_2.status

Issue 2985173002: Migrate language/async_backwards... ... language/async_star_take... (Closed)
Patch Set: Update tests to Dart 2.0. 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 side-by-side diff with in-line comments
Download patch
Index: tests/language_2/language_2.status
diff --git a/tests/language_2/language_2.status b/tests/language_2/language_2.status
index ccc8eb062c8e32ef1dac9a7ac8b9cb757de83a7d..038d67036a5952d7894a6ca6a33563e69e1bd948 100644
--- a/tests/language_2/language_2.status
+++ b/tests/language_2/language_2.status
@@ -10,6 +10,13 @@ abstract_exact_selector_test/01: MissingCompileTimeError
abstract_factory_constructor_test/00: MissingCompileTimeError
abstract_getter_test/01: MissingCompileTimeError
abstract_syntax_test/00: MissingCompileTimeError
+async_or_generator_return_type_stacktrace_test/01: MissingCompileTimeError
+async_or_generator_return_type_stacktrace_test/02: MissingCompileTimeError
+async_or_generator_return_type_stacktrace_test/03: MissingCompileTimeError
+async_return_types_test/wrongTypeParameter: MissingCompileTimeError
+async_return_types_test/tooManyTypeParameters: MissingCompileTimeError
+async_return_types_test/wrongReturnType: MissingCompileTimeError
+async_return_types_test/nestedFuture: MissingCompileTimeError
[ $compiler == dart2js && ! $dart2js_with_kernel ]
accessor_conflict_export2_test: Crash # Issue 25626
@@ -80,5 +87,92 @@ and_operation_on_non_integer_operand_test: Crash
arithmetic_canonicalization_test: Crash
arithmetic_smi_overflow_test: Crash
+[ $compiler == dartdevc && $runtime != none ]
+async_star_cancel_while_paused_test: RuntimeError # Issue 29920
+async_star_pause_test: RuntimeError
+
[ $compiler == dart2js && $dart2js_with_kernel && $use_sdk ]
*: Skip # Issue 29626
+
+[ $compiler == dart2js && ! $dart2js_with_kernel && $runtime != none ]
+async_star_cancel_while_paused_test: RuntimeError # Issue 22853
+
+[ $compiler == dart2js && $runtime == jsshell && ! $dart2js_with_kernel ]
+async_star_no_cancel_test: RuntimeError # Need triage
+async_star_no_cancel2_test: RuntimeError # Need triage
+
+[ $compiler == dart2js && $checked && ! $dart2js_with_kernel ]
+async_return_types_test/nestedFuture: Fail # Issue 26429
+async_return_types_test/wrongTypeParameter: Fail # Issue 26429
+
+[ $compiler == dart2js && $dart2js_with_kernel_in_ssa ]
+async_star_pause_test: RuntimeError # Issue 27394
+async_star_regression_fisk_test: RuntimeError # Issue 27394
+async_star_stream_take_test: RuntimeError # Issue 27394
+async_star_take_reyield_test: RuntimeError # Issue 27394
+
+[ $compiler == dart2js && $runtime == d8 && $dart2js_with_kernel ]
+async_break_in_finally_test: Crash
+async_continue_label_test/await_in_body: Crash
+async_continue_label_test/await_in_condition: Crash
+async_continue_label_test/await_in_init: Crash
+async_continue_label_test/await_in_update: Crash
+async_continue_label_test/none: Crash
+async_control_structures_test: Crash
+async_finally_rethrow_test: Crash
+async_or_generator_return_type_stacktrace_test/01: Crash
+async_or_generator_return_type_stacktrace_test/02: Crash
+async_or_generator_return_type_stacktrace_test/03: Crash
+async_or_generator_return_type_stacktrace_test/none: Crash
+async_regression_23058_test: Crash
+async_rethrow_test: Crash
+async_return_types_test/nestedFuture: Crash
+async_return_types_test/none: Crash
+async_return_types_test/tooManyTypeParameters: Crash
+async_return_types_test/wrongReturnType: Crash
+async_return_types_test/wrongTypeParameter: Crash
+async_star_cancel_and_throw_in_finally_test: Crash
+async_star_cancel_while_paused_test: Crash
+async_star_no_cancel2_test: Crash
+async_star_no_cancel_test: Crash
+async_star_pause_test: Crash
+async_star_regression_2238_test: Crash
+async_star_regression_23116_test: Crash
+async_star_regression_fisk_test: Crash
+async_star_stream_take_test: Crash
+async_star_take_reyield_test: Crash
+
+[ $checked && ($compiler == dartk || $compiler == dartkp) ]
+async_return_types_test/nestedFuture: Fail
+async_return_types_test/wrongTypeParameter: Fail
+
+# These test entries will be valid for vm (with and without kernel).
+[ $compiler == none || $compiler == app_jit || $compiler == dartk || $runtime == dart_precompiled ]
+async_star_cancel_while_paused_test: RuntimeError
+# This is OK for now, but we may want to change the semantics to match the test.
+async_star_pause_test: Fail, OK
+
+[ $compiler == dartk && $runtime == vm ]
+async_star_cancel_and_throw_in_finally_test: RuntimeError
+async_star_cancel_while_paused_test: RuntimeError
+async_star_regression_fisk_test: Timeout
+async_star_stream_take_test: Timeout
+async_star_take_reyield_test: Timeout
+
+[ $compiler == none || $compiler == precompiler || $compiler == app_jit ]
+async_star_regression_2238_test: CompileTimeError, RuntimeError
+
+[ $runtime == flutter ]
+
+# flutter uses --error_on_bad_type, --error_on_bad_override
+# and --await_is_keyword so # the following tests fail with
+# a Compilation Error
+async_return_types_test/tooManyTypeParameters: CompileTimeError
+
+# Look like bugs.
+async_return_types_test/nestedFuture: Skip # Flutter Issue 9110
+async_return_types_test/return_value_sync_star: Skip # Flutter Issue 9110
+async_return_types_test/wrongReturnType: Skip # Flutter Issue 9110
+async_return_types_test/wrongTypeParameter: Skip # Flutter Issue 9110
+async_star_cancel_while_paused_test: Skip # Flutter Issue 9110
+async_star_no_cancel_test: Skip # Flutter Issue 9110
« no previous file with comments | « tests/language_2/async_star_take_reyield_test.dart ('k') | tests/language_strong/async_backwards_compatibility_2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698