From 66d3ee157ba5192409753e3f4a488f9ab2063e4a Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Mon, 6 Jun 2022 19:11:59 -0400 Subject: [PATCH] hotfix for incorrect only- logic --- ui_test/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui_test/src/lib.rs b/ui_test/src/lib.rs index 0b076a5f51e..caefee1992e 100644 --- a/ui_test/src/lib.rs +++ b/ui_test/src/lib.rs @@ -516,9 +516,10 @@ fn ignore_file(comments: &Comments, target: &str) -> bool { if !target.contains(s) { return true; } + /* FIXME(https://github.com/rust-lang/miri/issues/2206) if get_pointer_width(target) != s { return true; - } + } */ } false }