mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 14:59:39 -04:00
Merge bitcoin/bitcoin#32083: doc: shallow clone qa-assets
6f9f415a4f
doc: shallow clone qa-assets (Lőrinc) Pull request description: While reviewing https://github.com/bitcoin/bitcoin/pull/31457#pullrequestreview-2690077410 I noticed that cloning `qa-assets` takes a lot of time - shallow cloning should suffice here. I haven't checked the other clones in this file but suggestion are welcome. ACKs for top commit: maflcko: lgtm ACK6f9f415a4f
Tree-SHA512: 21bd676c7709dbf7fd30b239d0a72f9c230453ed8f8a1b5319ac92ef9c5e67780939f095a239dd31bcb4550f8d69eaed4931a221e19cb0b957f18fac623c4a01
This commit is contained in:
commit
6245c23504
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ The project's collection of seed corpora is found in the [`bitcoin-core/qa-asset
|
||||||
To fuzz `process_message` using the [`bitcoin-core/qa-assets`](https://github.com/bitcoin-core/qa-assets) seed corpus:
|
To fuzz `process_message` using the [`bitcoin-core/qa-assets`](https://github.com/bitcoin-core/qa-assets) seed corpus:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
$ git clone https://github.com/bitcoin-core/qa-assets
|
$ git clone --depth=1 https://github.com/bitcoin-core/qa-assets
|
||||||
$ FUZZ=process_message build_fuzz/bin/fuzz qa-assets/fuzz_corpora/process_message/
|
$ FUZZ=process_message build_fuzz/bin/fuzz qa-assets/fuzz_corpora/process_message/
|
||||||
INFO: Seed: 1346407872
|
INFO: Seed: 1346407872
|
||||||
INFO: Loaded 1 modules (424174 inline 8-bit counters): 424174 [0x55d8a9004ab8, 0x55d8a906c3a6),
|
INFO: Loaded 1 modules (424174 inline 8-bit counters): 424174 [0x55d8a9004ab8, 0x55d8a906c3a6),
|
||||||
|
|
Loading…
Add table
Reference in a new issue