Skip to content

Commit 75a3577

Browse files
committed
Merge #458: Disable honggfuzz features
3bfb938 Disable honggfuzz features (Tobin C. Harding) Pull request description: Looks like fuzzing is broken. Disable `hongfuzz` default features as we did in `rust-bitcoin`. ACKs for top commit: apoelstra: ACK 3bfb938 Tree-SHA512: 1dfd92d428a17c9a5735ed66c058cc99aa5d6a7706aded4c005f9b091aeb3d7a3082d4d5d6d14065e1da71289a6c28e7cc38d97f909f4037d0978916b5b03c94
2 parents 9fd9aa4 + 3bfb938 commit 75a3577

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fuzz/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ afl_fuzz = ["afl"]
1212
honggfuzz_fuzz = ["honggfuzz"]
1313

1414
[dependencies]
15-
honggfuzz = { version = "0.5", optional = true }
15+
honggfuzz = { version = "0.5", default-features = false, optional = true }
1616
afl = { version = "0.8", optional = true }
1717
regex = { version = "1.4"}
1818
miniscript = { path = "..", features = ["compiler"] }

fuzz/travis-fuzz.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
set -e
3-
cargo install --force honggfuzz
3+
cargo install --force honggfuzz --no-default-features
44
for TARGET in fuzz_targets/*; do
55
FILENAME=$(basename $TARGET)
66
FILE="${FILENAME%.*}"

0 commit comments

Comments
 (0)