From 4a31dd6db07de943fc61bd7708971b621c3107e9 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Wed, 19 Apr 2023 14:45:32 -0400 Subject: [PATCH] Mark some tests that need keyword implemented as expect fail. --- build.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.rs b/build.rs index 4681b90..3794492 100644 --- a/build.rs +++ b/build.rs @@ -71,6 +71,10 @@ use organic::sexp; fn is_expect_fail(name: &str) -> Option<&str> { match name { "drawer_drawer_with_headline_inside" => Some("Apparently lines with :end: become their own paragraph. This odd behavior needs to be investigated more."), + "element_container_priority_drawer_dynamic_block" => Some("Keyword needs to be implemented."), + "element_container_priority_dynamic_block_dynamic_block" => Some("Keyword needs to be implemented."), + "element_container_priority_footnote_definition_dynamic_block" => Some("Keyword needs to be implemented."), + "element_container_priority_greater_block_dynamic_block" => Some("Keyword needs to be implemented."), _ => None, } }