Handle spaces in paths in status files. (#30107)

Also triage a couple more dartdevc tests.
This commit is contained in:
Bob Nystrom 2017-07-07 16:49:44 -07:00 committed by GitHub
parent b0803e1dd7
commit 5a3b8326e4
3 changed files with 4 additions and 5 deletions

View file

@ -746,8 +746,7 @@ const_switch_test/02: RuntimeError # Issue 29920
const_switch_test/04: RuntimeError # Ints and doubles are unified.
constant_type_literal_test/01: MissingCompileTimeError # DDC allows type parameter type literals in const expressions.
constructor12_test: RuntimeError # Issue 29920
covariant_subtyping_tearoff2_test: RuntimeError # Issue 29920
covariant_subtyping_tearoff3_test: RuntimeError # Issue 29920
covariant_subtyping_test: RuntimeError # Issue 29920
covariant_subtyping_unsafe_call2_test: RuntimeError # Issue 29920
covariant_subtyping_unsafe_call3_test: RuntimeError # Issue 29920
custom_await_stack_trace_test: RuntimeError # Issue 29920

View file

@ -191,10 +191,12 @@ html/custom/created_callback_test: CompileTimeError # Issue 29922
html/custom/document_register_basic_test: CompileTimeError # Issue 29922
html/custom/document_register_type_extensions_test/construction: CompileTimeError # Issue 29922
html/custom/document_register_type_extensions_test/constructors: CompileTimeError # Issue 29922
html/custom/document_register_type_extensions_test/createElement with type extension: CompileTimeError # Issue 29922
html/custom/document_register_type_extensions_test/functional: CompileTimeError # Issue 29922
html/custom/document_register_type_extensions_test/namespaces: CompileTimeError # Issue 29922
html/custom/document_register_type_extensions_test/parsing: CompileTimeError # Issue 29922
html/custom/document_register_type_extensions_test/registration: CompileTimeError # Issue 29922
html/custom/document_register_type_extensions_test/single-parameter createElement: CompileTimeError # Issue 29922
html/custom/element_upgrade_test: CompileTimeError # Issue 29922
html/custom/entered_left_view_test/disconnected_subtree: CompileTimeError # Issue 29922
html/custom/entered_left_view_test/shadow_dom: CompileTimeError # Issue 29922
@ -355,5 +357,3 @@ typed_data/int32x4_bigint_test: RuntimeError # Issue 29922
typed_data/int64_list_load_store_test: RuntimeError # Issue 29922
typed_data/typed_data_hierarchy_int64_test: RuntimeError # Issue 29922
typed_data/typed_data_list_test: RuntimeError # Issue 29922
html/custom/document_register_type_extensions_test/single-parameter createElement: CompileTimeError # Issue 29922
html/custom/document_register_type_extensions_test/createElement with type extension: CompileTimeError # Issue 29922

View file

@ -18,7 +18,7 @@ final _sectionPattern = new RegExp(r"^\[(.+?)\]");
/// like:
///
/// some/path/to/some_test: Pass || Fail
final _entryPattern = new RegExp(r"\s*([^: ]*)\s*:(.*)");
final _entryPattern = new RegExp(r"^([^:#]+):(.*)");
/// Matches an issue number in a comment, like:
///