From e27b083127c1c15ffc0db150d9b8fc1c57181f5f Mon Sep 17 00:00:00 2001 From: Tim Holy Date: Wed, 13 Mar 2019 18:43:58 -0500 Subject: [PATCH] Fix the julia test harness for the new API --- test/utils.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/utils.jl b/test/utils.jl index 0bda340f..f652aad0 100644 --- a/test/utils.jl +++ b/test/utils.jl @@ -187,10 +187,10 @@ function run_test_by_eval(test, fullpath, nstmts) # @show mod ex frame = JuliaInterpreter.prepare_thunk(modex) yield() # allow communication between processes - ret, nstmtsleft = evaluate_limited!(frame, nstmtsleft) + ret, nstmtsleft = evaluate_limited!(frame, nstmtsleft, true) if isa(ret, Aborted) push!(aborts, ret) - finish_stack!(Compiled(), frame, true) + JuliaInterpreter.finish_stack!(Compiled(), frame, true) end end println("Finished ", $test)