Update statuses for failing tests

BUG=https://github.com/dart-lang/pub/issues/1429
R=sgjesse@google.com

Review URL: https://codereview.chromium.org/2125563002 .
This commit is contained in:
William Hesse 2016-07-05 10:58:08 +02:00
parent 38fdb4bd4a
commit 020b6db84e
3 changed files with 10 additions and 3 deletions

View file

@ -27,9 +27,15 @@ analysis_server/test/completion_test: Pass, Slow
[ $runtime == vm && $system == windows]
analysis_server/test/analysis/get_errors_test: Skip # runtime error, Issue 22180
analysis_server/test/context_manager_test: RuntimeError # Issue 26828
analysis_server/test/integration/analysis/analysis_options_test: RuntimeError # Issue 24796
analyzer/test/generated/all_the_rest_test: Fail # Issue 21772
analyzer_cli/test/driver_test: Fail # Issue 25471
analyzer/test/generated/source_factory_test: RuntimeError # Issue 26828
analyzer/test/src/context/builder_test: RuntimeError # Issue 26828
analyzer/test/src/summary/linker_test: RuntimeError # Issue 26828
analyzer/test/src/summary/prelinker_test: RuntimeError # Issue 26828
analyzer/test/src/summary/summarize_elements_strong_test: RuntimeError # Issue 26828
analyzer/test/src/summary/summarize_elements_test: RuntimeError # Issue 26828
[ $compiler == dart2js ]
analysis_server/test/integration: SkipByDesign # Analysis server integration tests don't make sense to run under dart2js, since the code under test always runs in the Dart vm as a subprocess.

View file

@ -31,7 +31,7 @@ mirrors_js_typed_interop_test: Pass, Slow
[ $compiler == dart2js && $checked ]
js_function_getter_trust_types_test: Skip # --trust-type-annotations incompatible with --checked
[ $compiler == dart2js && $checked && $browser ]
[ $compiler == dart2js && $checked && $browser && $runtime != drt]
js_typed_interop_test/method: Fail # Issue 24822
[ $compiler == dart2js && $csp && $browser ]

View file

@ -5,11 +5,12 @@
# This directory contains tests that are intended to show the
# current state of the language.
[ $compiler != none || ($runtime != vm && $runtime != dartium && $runtime != drt)]
[ ($compiler != none && $compiler != precompiler) || ($runtime != vm && $runtime != dartium && $runtime != drt)]
arg_param_trailing_comma_test/none: Fail # Issue 26644
[ $compiler == none || $runtime == dartium && $runtime == drt ]
arg_param_trailing_comma_test/main_with_trailing: Fail, OK # Dartium only looks for main without args.
arg_param_trailing_comma_test/none: Fail, OK # Dartium only looks for main without args.
[ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $compiler == dart2appjit) ]
tearoff_constructor_basic_test: Skip # Crashes in checked mode -- hausner investigating