Skip to content

Commit 1b56117

Browse files
committed
Prints
1 parent cc24e58 commit 1b56117

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/fuzz.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,20 @@ seed!(6174)
66
@testset "Fuzz test" begin
77
@time @testset "expand fuzz" begin
88
for i=1:500
9+
i % 100 == 0 && @info "expand fuzz" iter=i
910
fuzz_test(5, num_spec, SymbolicUtils.expand; min_depth=3)
1011
end
1112
end
1213
@time @testset "num fuzz" begin
1314
for i=1:1500
15+
i % 100 == 0 && @info "num fuzz" iter=i
1416
fuzz_test(5, num_spec)
1517
end
1618
end
1719
@time @testset "bool fuzz" begin
1820
for i=1:500
1921
seed!(i)
22+
i % 100 == 0 && @info "bool fuzz" iter=i
2023
fuzz_test(5, bool_spec)
2124
end
2225
end

0 commit comments

Comments
 (0)