Skip to content

Commit ee5e1f0

Browse files
committed
Merge #790: mechanical updates to fuzztests
b22f3e5 fuzz: run generate-files.sh (Andrew Poelstra) ab61d7a fuzz: update generate-files.sh for recent "fuzz against released 12.3" test (Andrew Poelstra) Pull request description: Our `generate-files.sh` script got out of sync again. I will try to add a check for this to my local CI. Fixes #789 ACKs for top commit: sanket1729: ACK b22f3e5 Tree-SHA512: 35d093206e34b4f22b2b8134c675f69fa78e8cbf6e06cbd3d46abd3b42d6196317f7aec6b31b3dbc76cd979802e1efe678c9929f751c6fa2733904cbe76d823d
2 parents a17b34c + b22f3e5 commit ee5e1f0

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/cron-daily-fuzz.yml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
compile_descriptor,
2222
compile_taproot,
2323
parse_descriptor,
24+
parse_descriptor_priv,
2425
parse_descriptor_secret,
2526
regression_descriptor_parse,
2627
roundtrip_concrete,

fuzz/generate-files.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@ cargo-fuzz = true
2323
2424
[dependencies]
2525
honggfuzz = { version = "0.5.56", default-features = false }
26-
miniscript = { path = "..", features = [ "compiler" ] }
27-
old_miniscript = { package = "miniscript", git = "https://github.com/apoelstra/rust-miniscript/", rev = "1259375d7b7c91053e09d1cbe3db983612fe301c" }
26+
# We shouldn't need an explicit version on the next line, but Andrew's tools
27+
# choke on it otherwise. See https://github.com/nix-community/crate2nix/issues/373
28+
miniscript = { path = "..", features = [ "compiler" ], version = "13.0" }
29+
old_miniscript = { package = "miniscript", version = "12.3" }
2830
2931
regex = "1.0"
3032
EOF

0 commit comments

Comments
 (0)