diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-09-27 11:53:34 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-01-02 18:00:05 -0500 |
commit | fa37e0a68bea65979f9f8f2e5258fe608acf2bdf (patch) | |
tree | 8deac6542c23efb0dad232c4c30bc88c68187e71 /test/sanitizer_suppressions/tsan | |
parent | 17e14ac92fced92457945859463eda5d435bdd49 (diff) |
test: Show debug log on unit test failure
Diffstat (limited to 'test/sanitizer_suppressions/tsan')
-rw-r--r-- | test/sanitizer_suppressions/tsan | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/sanitizer_suppressions/tsan b/test/sanitizer_suppressions/tsan index 70eea34363..b9c5c038d0 100644 --- a/test/sanitizer_suppressions/tsan +++ b/test/sanitizer_suppressions/tsan @@ -7,6 +7,14 @@ deadlock:WalletBatch # Intentional deadlock in tests deadlock:TestPotentialDeadLockDetected +# Race due to unprotected calls to thread-unsafe BOOST_TEST_MESSAGE from different threads: +# * G_TEST_LOG_FUN in the index thread +# * boost test case invoker (entering a test case) in the main thread +# TODO: get rid of BOOST_ macros, see also https://github.com/bitcoin/bitcoin/issues/8670 +race:blockfilter_index_initial_sync_invoker +race:txindex_initial_sync_invoker +race:validation_block_tests::TestSubscriber + # Wildcard for all gui tests, should be replaced with non-wildcard suppressions race:src/qt/test/* deadlock:src/qt/test/* |