Skip to content

Commit 3698d27

Browse files
committed
try harder to get a repro
1 parent a3eb35d commit 3698d27

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

test/fuzz.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ include("fuzzlib.jl")
22

33
using Random: seed!
44

5-
seed!(6175)
5+
seed!(6174)
66
@time @testset "expand fuzz" begin
77
for i=1:500
88
i % 100 == 0 && @info "expand fuzz" iter=i

test/fuzzlib.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,8 @@ function fuzz_test(ntrials, spec, simplify=simplify;kwargs...)
142142
"""
143143
f = include_string(Main, unsimplifiedstr)
144144
g = include_string(Main, simplifiedstr)
145-
@show g
145+
@show unsimplifiedstr
146+
@show simplifiedstr
146147

147148
for i=1:ntrials
148149
args = [spec.input(i) for i in inputs]

0 commit comments

Comments
 (0)