Skip to content

Commit 1c2c2fb

Browse files
authored
Merge pull request #137 from JuliaDebug/teh/juliatests
Fix the julia test harness for the new API
2 parents 4e85ae7 + e27b083 commit 1c2c2fb

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)