Migrated test block 40 + 41 to Dart 2.0.

Bug:
Change-Id: I412da79f3765c4ddf8c621ef290b2665d4d54a67
Reviewed-on: https://dart-review.googlesource.com/11647
Commit-Queue: Ben Konyi <bkonyi@google.com>
Reviewed-by: Bob Nystrom <rnystrom@google.com>
This commit is contained in:
Ben Konyi
2017-10-07 00:11:46 +00:00
committed by commit-bot@chromium.org
parent 24ee7dab3c
commit afdf5281c9
12 changed files with 34 additions and 13 deletions
+11 -1
View File
@@ -538,6 +538,7 @@ vm/*: SkipByDesign # Tests for the VM.
minify_closure_variable_collision_test: SkipByDesign # Regression test for dart2js
[ $compiler == dart2js && $runtime != none ]
async_star_test/02: RuntimeError
not_enough_positional_arguments_test/00: MissingCompileTimeError
not_enough_positional_arguments_test/03: MissingCompileTimeError
not_enough_positional_arguments_test/06: MissingCompileTimeError
@@ -854,6 +855,7 @@ async_await_syntax_test/a06a: RuntimeError
async_await_syntax_test/b06a: RuntimeError
async_await_syntax_test/c06a: RuntimeError
async_await_syntax_test/d06a: RuntimeError
async_await_test: Crash # 'file:*/pkg/compiler/lib/src/ssa/type_builder.dart': Failed assertion: line 141 pos 12: 'member.isInstanceMember': is not true.
async_star_await_pauses_test: RuntimeError
async_star_cancel_and_throw_in_finally_test: RuntimeError
async_star_cancel_while_paused_test: RuntimeError
@@ -863,6 +865,7 @@ async_star_pause_test: RuntimeError
async_star_regression_fisk_test: RuntimeError
async_star_stream_take_test: RuntimeError
async_star_take_reyield_test: RuntimeError
async_star_test: Crash # 'file:*/pkg/compiler/lib/src/ssa/type_builder.dart': Failed assertion: line 141 pos 12: 'member.isInstanceMember': is not true.
await_exceptions_test: RuntimeError
await_for_test: RuntimeError
await_for_use_local_test: RuntimeError
@@ -1125,7 +1128,6 @@ type_parameter_test/08: Crash # Assertion failure: Runtime type information not
type_parameter_test/09: Crash # Assertion failure: Runtime type information not available for type_variable_local(A.T) in (local(A.#))in j:closure_call(A_A_closure.call).
type_parameter_test/none: Crash # Assertion failure: Runtime type information not available for type_variable_local(A.T) in (local(A.#))in j:closure_call(A_A_closure.call).
typevariable_substitution2_test/02: RuntimeError
async_await_test: Crash # 'file:*/pkg/compiler/lib/src/ssa/type_builder.dart': Failed assertion: line 141 pos 12: 'member.isInstanceMember': is not true.
[ $compiler == dart2js && $dart2js_with_kernel && $minified ]
@@ -1432,6 +1434,14 @@ async_star_no_cancel2_test: RuntimeError # Need triage
async_star_no_cancel_test: RuntimeError # Need triage
await_for_test: Skip # Jsshell does not provide periodic timers, Issue 7728
[ $compiler == dart2js && $runtime == jsshell ]
async_star_test/01: RuntimeError
async_star_test/02: RuntimeError
async_star_test/03: RuntimeError
async_star_test/04: RuntimeError
async_star_test/05: RuntimeError
async_star_test/none: RuntimeError
[ $compiler == dart2js && $checked && !$dart2js_with_kernel ]
async_return_types_test/nestedFuture: Fail # Issue 26429
async_return_types_test/wrongTypeParameter: Fail # Issue 26429
+12 -6
View File
@@ -178,6 +178,12 @@ void_type_usage_test/setter_assign: CompileTimeError # Issue 30514
assertion_test: RuntimeError # Issue 30326
async_star_cancel_while_paused_test: RuntimeError # Issue 29920
async_star_pause_test: RuntimeError
async_star_test/01: RuntimeError
async_star_test/02: RuntimeError
async_star_test/03: RuntimeError
async_star_test/04: RuntimeError
async_star_test/05: RuntimeError
async_star_test/none: RuntimeError
await_future_test: Pass, Timeout # Issue 29920
bit_operations_test/01: RuntimeError # No bigints on web.
bit_operations_test/02: RuntimeError # No bigints on web.
@@ -244,8 +250,12 @@ invocation_mirror_test: RuntimeError
issue21159_test: RuntimeError # Issue 30701
issue23244_test: RuntimeError # Issue 29920
label_test: RuntimeError # Issue 30675
modulo_test: RuntimeError # Ints and doubles are unified.
lazy_static3_test: RuntimeError # Issue 30852
lazy_static8_test: RuntimeError # Issue 30852
left_shift_test: RuntimeError # Ints and doubles are unified.
list_is_test: RuntimeError # Issue 29920
many_overridden_no_such_method_test: RuntimeError # UnimplementedError: JsInstanceMirror.delegate unimplemented
modulo_test: RuntimeError # Ints and doubles are unified.
named_parameter_clash_test: RuntimeError # Issue 29920
named_parameters_default_eq_test/none: RuntimeError
nan_identical_test: RuntimeError # Issue 29920
@@ -254,10 +264,6 @@ null_test/mirrors: RuntimeError # Uses mirrors.
number_identity2_test: RuntimeError # Issue 29920
numbers_test: RuntimeError # Issue 29920
overridden_no_such_method_test: RuntimeError # UnimplementedError: JsInstanceMirror.delegate unimplemented
prefix10_negative_test: Skip # Issue 29920
vm/*: SkipByDesign # Tests for the VM.
yieldstar_pause_test: Skip # Times out
list_is_test: RuntimeError # Issue 29920
prefix10_negative_test: Skip # Issue 29920
lazy_static3_test: RuntimeError # Issue 30852
lazy_static8_test: RuntimeError # Issue 30852
left_shift_test: RuntimeError # Ints and doubles are unified.
@@ -488,3 +488,6 @@ vm/regress_29145_test: Skip # Issue 29145
[ $compiler == dartk && $mode == debug ]
deopt_inlined_function_lazy_test: Skip
[ $compiler == dartkp || $compiler == dartk ]
async_star_test/01: Pass
@@ -709,6 +709,8 @@ vm/type_cast_vm_test: RuntimeError # Expects line and column numbers
generalized_void_syntax_test: CompileTimeError # Issue #30176
[ $compiler == precompiler ]
async_star_test/01: CompileTimeError # Issue 2238.
async_star_test/02: RuntimeError
deferred_global_test: Fail
deopt_inlined_function_lazy_test: Skip # Incompatible flag: --deoptimize-alot
implicit_closure_test: Skip # Incompatible flag: --use_slow_path
+3
View File
@@ -40,6 +40,8 @@ async_return_types_test/nestedFuture: MissingCompileTimeError
async_return_types_test/tooManyTypeParameters: MissingCompileTimeError
async_return_types_test/wrongReturnType: MissingCompileTimeError
async_return_types_test/wrongTypeParameter: MissingCompileTimeError
async_star_test/01: CompileTimeError # Issue 2238.
async_star_test/02: RuntimeError
bad_named_parameters2_test/01: MissingCompileTimeError
bad_named_parameters_test/01: MissingCompileTimeError
bad_named_parameters_test/02: MissingCompileTimeError
@@ -816,3 +818,4 @@ vm/optimized_stacktrace_test: Pass, Crash # Issue 28276
[$runtime == vm && $compiler == none && $system == fuchsia]
async_await_test: RuntimeError
async_star_test: RuntimeError
@@ -298,12 +298,6 @@ export_private_test/01: MissingCompileTimeError # Issue 29920
[ $compiler == dartdevc && $runtime != none ]
async_star_cancel_while_paused_test: RuntimeError # Issue 29920
async_star_test/01: RuntimeError # Issue 28969
async_star_test/02: RuntimeError # Issue 28969
async_star_test/03: RuntimeError # Issue 28969
async_star_test/04: RuntimeError # Issue 28969
async_star_test/05: RuntimeError # Issue 28969
async_star_test/none: RuntimeError # Issue 28969
asyncstar_throw_in_catch_test: Skip # Times out. Issue 29920
bit_operations_test/01: RuntimeError # No bigints on web.
bit_operations_test/02: RuntimeError # No bigints on web.
@@ -3,6 +3,9 @@
# BSD-style license that can be found in the LICENSE file.
[ $compiler == dartk && $runtime == vm ]
async_await_test/02: DartkCompileTimeError
async_await_test/03: DartkCompileTimeError
async_await_test/none: DartkCompileTimeError
async_star_test/01: DartkCompileTimeError
async_star_test/02: DartkCompileTimeError
async_star_test/03: DartkCompileTimeError