Skip to content

Commit

Permalink
Merge pull request #137 from JuliaDebug/teh/juliatests
Browse files Browse the repository at this point in the history
Fix the julia test harness for the new API
  • Loading branch information
timholy authored Mar 14, 2019
2 parents 4e85ae7 + e27b083 commit 1c2c2fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 1c2c2fb

Please sign in to comment.