Skip to content

Commit

Permalink
Increase MEMDEBUG allocation threshold for #14173 test
Browse files Browse the repository at this point in the history
One of my ASAN CI builds allocated 21056 bytes on this test, so tweaking the thresholds yet again...
  • Loading branch information
maleadt committed Aug 21, 2016
1 parent 78371b3 commit 2f0ac08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/misc.jl
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ module Tmp14173
end
whos(IOBuffer(), Tmp14173) # warm up
const MEMDEBUG = ccall(:jl_is_memdebug, Bool, ())
@test @allocated(whos(IOBuffer(), Tmp14173)) < (MEMDEBUG ? 20000 : 8000)
@test @allocated(whos(IOBuffer(), Tmp14173)) < (MEMDEBUG ? 30000 : 8000)

## test conversion from UTF-8 to UTF-16 (for Windows APIs)

Expand Down

0 comments on commit 2f0ac08

Please sign in to comment.