From 8e96740236ae6da65f94335bd17139bd2f7884ab Mon Sep 17 00:00:00 2001 From: Tim Besard Date: Sun, 21 Aug 2016 19:29:10 -0400 Subject: [PATCH] Increase MEMDEBUG allocation threshold for #14173 test --- test/misc.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/misc.jl b/test/misc.jl index e91c3ca135b8c..114c0f2b9079f 100644 --- a/test/misc.jl +++ b/test/misc.jl @@ -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)