Chromium Code Reviews| Index: tests/language/language.status |
| diff --git a/tests/language/language.status b/tests/language/language.status |
| index fad9e691974be8963a9e9576660dda5137139c44..4f52292ab35727e84c6413aad38ebb08974aacd2 100644 |
| --- a/tests/language/language.status |
| +++ b/tests/language/language.status |
| @@ -5,15 +5,12 @@ |
| # This directory contains tests that are intended to show the |
| # current state of the language. |
| +# These test entries will be valid for vm/dartium (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 == none || $compiler == precompiler || $compiler == app_jit ] |
| -# Other issues: |
| -generic_methods_type_expression_test: RuntimeError # Issue 25869 |
| - |
| # These tests are skipped in the VM because it has "--supermixin" |
| # functionality enabled unconditionally. The tests should be removed |
| # once the same is true for analyzer (#24478) and dart2js (#23773) |
| @@ -24,6 +21,8 @@ mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 |
| constructor5_test: Fail # Issue 6422 |
| constructor6_test: Fail # Issue 6422 |
| +generic_methods_type_expression_test: RuntimeError # Issue 25869 / 27460 |
| + |
| # Failures related to super call in ctor initializer list |
| super_test: Fail, OK |
| final_field_initialization_order_test: Fail, OK |
| @@ -32,25 +31,25 @@ example_constructor_test: Fail, OK |
| constructor3_test: Fail, OK |
| constructor2_test: Fail, OK |
| -dynamic_prefix_core_test/01: RuntimeError # Issue 12478 |
| -multiline_strings_test: Fail # Issue 23020 |
| - |
| # Regular bugs which should be fixed. |
| duplicate_export_negative_test: Fail # Issue 6134 |
| -deferred_redirecting_factory_test: Fail # Issue 23408 |
| -redirecting_constructor_initializer_test: RuntimeError # Issue 23488 |
| - |
| # Non-contractive types are not supported in the vm. |
| cyclic_type_test/02: Fail, OK |
| cyclic_type_test/04: Fail, OK |
| cyclic_type2_test: Fail, OK |
| least_upper_bound_expansive_test/*: Fail, OK |
| -async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runtime-errs. |
| -# Fails because `as T` is an error rather than being treated like `as dynamic`. |
| -generic_methods_type_expression_test: RuntimeError # Issue 27460 |
| +[ $compiler == none || $compiler == precompiler || $compiler == app_jit ] |
| + |
| +dynamic_prefix_core_test/01: RuntimeError # Issue 12478 |
| +multiline_strings_test: Fail # Issue 23020 |
| + |
| +deferred_redirecting_factory_test: Fail # Issue 23408 |
| +#redirecting_constructor_initializer_test: RuntimeError # Issue 23488 |
|
Vyacheslav Egorov (Google)
2017/01/11 17:15:27
Why is this commented out?
kustermann
2017/01/11 19:12:19
Done.
|
| + |
| +async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runtime-errs. |
| [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $checked ] |
| # These generic functions tests pass for the wrong reason in checked mode, |