We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc24e58 commit 1b56117Copy full SHA for 1b56117
test/fuzz.jl
@@ -6,17 +6,20 @@ seed!(6174)
6
@testset "Fuzz test" begin
7
@time @testset "expand fuzz" begin
8
for i=1:500
9
+ i % 100 == 0 && @info "expand fuzz" iter=i
10
fuzz_test(5, num_spec, SymbolicUtils.expand; min_depth=3)
11
end
12
13
@time @testset "num fuzz" begin
14
for i=1:1500
15
+ i % 100 == 0 && @info "num fuzz" iter=i
16
fuzz_test(5, num_spec)
17
18
19
@time @testset "bool fuzz" begin
20
21
seed!(i)
22
+ i % 100 == 0 && @info "bool fuzz" iter=i
23
fuzz_test(5, bool_spec)
24
25
0 commit comments