Skip to content

Commit e27b083

Browse files
committed
Fix the julia test harness for the new API
1 parent 4e85ae7 commit e27b083

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/utils.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,10 +187,10 @@ function run_test_by_eval(test, fullpath, nstmts)
187187
# @show mod ex
188188
frame = JuliaInterpreter.prepare_thunk(modex)
189189
yield() # allow communication between processes
190-
ret, nstmtsleft = evaluate_limited!(frame, nstmtsleft)
190+
ret, nstmtsleft = evaluate_limited!(frame, nstmtsleft, true)
191191
if isa(ret, Aborted)
192192
push!(aborts, ret)
193-
finish_stack!(Compiled(), frame, true)
193+
JuliaInterpreter.finish_stack!(Compiled(), frame, true)
194194
end
195195
end
196196
println("Finished ", $test)

0 commit comments

Comments
 (0)