diff options
| author | Jon Atack <[email protected]> | 2019-11-12 14:28:58 +0100 |
|---|---|---|
| committer | Jon Atack <[email protected]> | 2020-01-03 14:22:36 +0100 |
| commit | 77ef48d53263deaf89290c1cbadb6d90e688575d (patch) | |
| tree | ee8ab01d32c874b0d72b49b02d7fdbcb0ebd8ad5 | |
| parent | Merge #17442: fix Typo: "merkelRoot" -> "merkleRoot" (diff) | |
| download | discoin-77ef48d53263deaf89290c1cbadb6d90e688575d.tar.xz discoin-77ef48d53263deaf89290c1cbadb6d90e688575d.zip | |
gitignore: ignore fuzz binaries, remove test_bitcoin_fuzzy
The fuzzing gitignores haven't been updated since a4153e2
in 2016 that added an initial simple fuzzing framework.
This commit:
- removes `src/test/test_bitcoin_fuzzy` which is no longer
used in favor of `src/test/fuzz`
- ignores the src/test/fuzz directory, then un-ignores any
files in it with an extension
Co-authored-by: Karl-Johan Alm <[email protected]>
| -rw-r--r-- | .gitignore | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 809e851ff..6af844c7e 100644 --- a/.gitignore +++ b/.gitignore @@ -7,8 +7,9 @@ src/bitcoind src/bitcoin-cli src/bitcoin-tx src/bitcoin-wallet +src/test/fuzz +!src/test/fuzz/*.* src/test/test_bitcoin -src/test/test_bitcoin_fuzzy src/qt/test/test_bitcoin-qt # autoreconf |