From 78c599b6b8a2fd0a04c416ce107d247cae7ddcc9 Mon Sep 17 00:00:00 2001 From: Jarrett Revels Date: Wed, 3 May 2017 10:30:36 -0400 Subject: [PATCH] remove test checking the state of the now-nonexistant inference work queue --- test/staged.jl | 1 - 1 file changed, 1 deletion(-) diff --git a/test/staged.jl b/test/staged.jl index debc3ae58d165..88ed5642eff48 100644 --- a/test/staged.jl +++ b/test/staged.jl @@ -147,7 +147,6 @@ module TestGeneratedThrow foo() = (bar(rand() > 0.5 ? 1 : 1.0); error("foo")) function __init__() code_typed(foo,(); optimize = false) - @test Core.Inference.isempty(Core.Inference.active) && Core.Inference.isempty(Core.Inference.workq) cfunction(foo,Void,()) end end