From e61daf8a5808dc7becdf382446cfb76e7137d82c Mon Sep 17 00:00:00 2001 From: Nathan Daly Date: Fri, 6 Oct 2023 11:36:47 -0600 Subject: [PATCH] Update Allocs.jl --- test/Allocs.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Allocs.jl b/test/Allocs.jl index 752e3b8..bf1a9ee 100644 --- a/test/Allocs.jl +++ b/test/Allocs.jl @@ -49,7 +49,7 @@ end outf = PProf.Allocs.pprof(out=out, web=false) # Read the exported profile - prof = open(io->decode(ProtoDecoder(io), PProf.perftools.profiles.Profile), outf, "r") + prof = open(io->decode(ProtoDecoder(GzipDecompressorStream(io)), PProf.perftools.profiles.Profile), outf, "r") # Test for both functions: @test in("foo(::Float64)", prof.string_table)