Skip to content

Commit ad36c98

Browse files
committed
Add unit test covering postprocess=()->().
1 parent f7eac0f commit ad36c98

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

test/runtests.jl

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using PkgBenchmark
22
using BenchmarkTools
3+
using Statistics
34
using Test
45
using Dates
56
using LibGit2
@@ -73,6 +74,21 @@ temp_pkg_dir(;tmp_dir = tmp_dir) do
7374
end
7475
end
7576

77+
@testset "postprocess" begin
78+
PkgBenchmark._withtemp(tempname()) do f
79+
str = """
80+
using BenchmarkTools
81+
SUITE = BenchmarkGroup()
82+
SUITE["foo"] = @benchmarkable for _ in 1:100; 1+1; end
83+
"""
84+
open(f, "w") do file
85+
print(file, str)
86+
end
87+
@test typeof(benchmarkpkg(TEST_PACKAGE_NAME, script=f;
88+
postprocess=(r)->(r["foo"] = maximum(r["foo"]); return r))) == BenchmarkResults
89+
end
90+
end
91+
7692
# Make a commit with a small benchmarks.jl file
7793
testpkg_path = Pkg.dir(TEST_PACKAGE_NAME)
7894
LibGit2.init(testpkg_path)

0 commit comments

Comments
 (0)