Skip to content

Commit

Permalink
Merge #790: mechanical updates to fuzztests
Browse files Browse the repository at this point in the history
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
  • Loading branch information
apoelstra committed Mar 1, 2025
2 parents a17b34c + b22f3e5 commit ee5e1f0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/cron-daily-fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
compile_descriptor,
compile_taproot,
parse_descriptor,
parse_descriptor_priv,
parse_descriptor_secret,
regression_descriptor_parse,
roundtrip_concrete,
Expand Down
6 changes: 4 additions & 2 deletions fuzz/generate-files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ cargo-fuzz = true
[dependencies]
honggfuzz = { version = "0.5.56", default-features = false }
miniscript = { path = "..", features = [ "compiler" ] }
old_miniscript = { package = "miniscript", git = "https://github.com/apoelstra/rust-miniscript/", rev = "1259375d7b7c91053e09d1cbe3db983612fe301c" }
# We shouldn't need an explicit version on the next line, but Andrew's tools
# choke on it otherwise. See https://github.com/nix-community/crate2nix/issues/373
miniscript = { path = "..", features = [ "compiler" ], version = "13.0" }
old_miniscript = { package = "miniscript", version = "12.3" }
regex = "1.0"
EOF
Expand Down

0 comments on commit ee5e1f0

Please sign in to comment.