From 8cdca061f8179f610f1becab36d186c1a796efb4 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Wed, 19 Jul 2023 00:46:36 -0400 Subject: [PATCH] Ignore test export_snippet_paragraph_break_precedent. This test is failing on the CI because emacs 28 allows for export snippets without a closing @@. --- build.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/build.rs b/build.rs index bb99b667..d66de88e 100644 --- a/build.rs +++ b/build.rs @@ -79,6 +79,7 @@ fn is_expect_fail(name: &str) -> Option<&str> { "element_container_priority_greater_block_greater_block" => Some("Need to implement subscript."), "element_container_priority_section_greater_block" => Some("Need to implement subscript."), "paragraphs_paragraph_with_backslash_line_breaks" => Some("The text we're getting out of the parse tree is already processed to remove line breaks, so our comparison needs to take that into account."), + "export_snippet_paragraph_break_precedent" => Some("Emacs 28 has broken behavior so the tests in the CI fail."), _ => None, } }