From 636439c33f392d71fe455727dc9386d264b753d0 Mon Sep 17 00:00:00 2001 From: Wesley Wiser Date: Mon, 9 Sep 2019 06:32:02 -0400 Subject: [PATCH] Re-enable run-pass tests with optimizations enabled --- tests/compiletest.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/compiletest.rs b/tests/compiletest.rs index aa2488b1a417..00fd039ad7e8 100644 --- a/tests/compiletest.rs +++ b/tests/compiletest.rs @@ -122,7 +122,7 @@ fn test_runner(_tests: &[&()]) { std::env::set_var("MIRI_ENV_VAR_TEST", "0"); run_pass_miri(false); - // FIXME: hashmap ICEs with optimizations run_pass_miri(true); + run_pass_miri(true); compile_fail_miri(false); compile_fail_miri(true);