Skip to content

Commit 01ae452

Browse files
authored
Merge pull request #399 from TheBlueMatt/2019-11-fuzz-top-level
Move fuzz to top level.
2 parents 65f7c9f + 9501ecc commit 01ae452

39 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ script:
2121
# Test lightning workspace for 1.22.0
2222
- if [ "$(rustup show | grep default | grep 1.22.0)" != "" ]; then RUSTFLAGS="-C link-dead-code" cargo test --verbose -p lightning; fi
2323
# Run lightning workspace fuzz tests for Rust 1.34.2
24-
- if [ "$(rustup show | grep default | grep 1.34.2)" != "" ]; then cd lightning/fuzz && cargo test --verbose && ./travis-fuzz.sh; fi
24+
- if [ "$(rustup show | grep default | grep 1.34.2)" != "" ]; then cd fuzz && cargo test --verbose && ./travis-fuzz.sh; fi
2525
- if [ "$(rustup show | grep default | grep stable)" != "" ]; then
2626
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
2727
tar xzf master.tar.gz &&
File renamed without changes.

lightning/fuzz/Cargo.toml renamed to fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ libfuzzer_fuzz = ["libfuzzer-sys"]
1717

1818
[dependencies]
1919
afl = { version = "0.4", optional = true }
20-
lightning = { path = "..", features = ["fuzztarget"] }
20+
lightning = { path = "../lightning", features = ["fuzztarget"] }
2121
bitcoin = { version = "0.20", features = ["fuzztarget"] }
2222
bitcoin_hashes = { version = "0.7", features = ["fuzztarget"] }
2323
hex = "0.3"
File renamed without changes.

0 commit comments

Comments
 (0)