From 1e8781e2d173579580ef9514a5a9d07ef9a369e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20M=C3=BCller?= Date: Tue, 20 Jul 2021 13:06:57 +0200 Subject: [PATCH] Fix proc_spec forcing normal compilation instead of JIT (#10964) --- spec/compiler/codegen/proc_spec.cr | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spec/compiler/codegen/proc_spec.cr b/spec/compiler/codegen/proc_spec.cr index 8cb5d8e58896..d53ab169dad9 100644 --- a/spec/compiler/codegen/proc_spec.cr +++ b/spec/compiler/codegen/proc_spec.cr @@ -888,6 +888,7 @@ describe "Code gen: proc" do )).to_i.should eq(1) end + # FIXME: JIT compilation of this spec is broken, forcing normal compilation (#10961) it "doesn't crash when taking a proc pointer to a virtual type (#9823)" do run(%( abstract struct Parent @@ -911,7 +912,7 @@ describe "Code gen: proc" do end Child1.new.as(Parent).get - )) + ), flags: [] of String) end it "doesn't crash when taking a proc pointer that multidispatches on the top-level (#3822)" do