From 4f37c14181ff20318723a83e58020e9befc8098a Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Thu, 23 Sep 2021 15:28:23 -0700 Subject: [PATCH] Categorize new test suite parse failures --- tests/repo/mod.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/repo/mod.rs b/tests/repo/mod.rs index c4586ca4f8..496f534839 100644 --- a/tests/repo/mod.rs +++ b/tests/repo/mod.rs @@ -12,10 +12,9 @@ const REVISION: &str = "ac2d9fc509e36d1b32513744adf58c34bcc4f43c"; #[rustfmt::skip] static EXCLUDE: &[&str] = &[ - // NEEDS CATEGORIZATION - "library/alloc/src/borrow.rs", + // TODO: dot after curly braced macro call: macro!{...}.field + // https://github.com/dtolnay/syn/issues/1068 "src/test/ui/parser/macro-braces-dot-question.rs", - "src/test/ui/rfc-2632-const-trait-impl/inherent-impl-const-bounds.rs", // TODO: impl ~const T {} // https://github.com/dtolnay/syn/issues/1051 @@ -23,6 +22,8 @@ static EXCLUDE: &[&str] = &[ // TODO: ~const in where-clause // https://github.com/dtolnay/syn/issues/1051 + "library/alloc/src/borrow.rs", + "src/test/ui/rfc-2632-const-trait-impl/inherent-impl-const-bounds.rs", "src/test/ui/rfc-2632-const-trait-impl/trait-where-clause-run.rs", "src/test/ui/rfc-2632-const-trait-impl/trait-where-clause-self-referential.rs",