Page MenuHomePhabricator

tests: Fix lock-order-inversion (potential deadlock) in DoS_tests.
ClosedPublic

Authored by Fabien on Jul 9 2019, 12:03.

Details

Summary
Reported by TSAN.

Makes `src/test/test_bitcoin --run_test=DoS_tests` pass also when
compiled with TreadSanitizer (`./configure --with-sanitizers=thread`).

Backport of core PR12882
https://github.com/bitcoin/bitcoin/pull/12882/files

Test Plan
mkdir build && cd build
../configure --with-sanitizers=thread
make
export TSAN_OPTIONS="suppressions=${PWD}/../test/sanitizer_suppressions/tsan"
./src/test/test_bitcoin -t denialofservice_tests

Diff Detail

Repository
rABC Bitcoin ABC
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

deadalnix requested changes to this revision.Jul 9 2019, 12:13
deadalnix added inline comments.
test/sanitizer_suppressions/tsan
17 ↗(On Diff #10126)

This doesn't looks like it is related.

This revision now requires changes to proceed.Jul 9 2019, 12:13

Remove unrelated tsan edit.

This revision is now accepted and ready to land.Jul 9 2019, 17:28