Page MenuHomePhabricator

fuzz: Link BasicTestingSetup (shared with unit tests)
ClosedPublic

Authored by Fabien on Mar 16 2020, 19:48.

Details

Summary
Test Plan
export CC=clang CXX=clang++
../configure --enable-fuzz --with-sanitizers=fuzzer,address \
  --disable-wallet \
  --disable-bench \
  --with-utils=no \
  --with-daemon=no \
  --with-libs=no \
  --with-gui=no \
  --with-seeder=no
make
mkdir -p test/fuzz
cp ../test/fuzz/test_runner.py test/fuzz/
./test/fuzz/test_runner.py -l DEBUG <path_to_corpus>

cmake -GNinja .. -DENABLE_SANITIZERS="address;fuzzer" \
  -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++
ninja bitcoin-fuzzers link-fuzz-test_runner.py
./test/fuzz/test_runner.py -l DEBUG <path_to_corpus>

Diff Detail

Repository
rABC Bitcoin ABC
Branch
PR15504_part4
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 9828
Build 17526: Default Diff Build & Tests
Build 17525: arc lint + arc unit

Event Timeline

[Bot Message]
One or more PR numbers were detected in the summary.
Links to those PRs have been inserted into the summary for reference.

Add a comment to remember to make the test_bitcoin.cpp a library (avoiding relative path).

This revision is now accepted and ready to land.Mar 17 2020, 20:18