Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ParallelTestRunner.jl
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ function available_memory()

page_size = Int(@ccall sysconf(29::UInt32)::UInt32)

return (Int(vms[].free_count) + Int(vms[].inactive_count)) * page_size
return (Int(vms[].free_count) + Int(vms[].inactive_count) + Int(vms[].purgeable_count)) * page_size
end

else
Expand Down