mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-06-15 00:59:38 +02:00
Merge bitcoin/bitcoin#34589: ci: Temporarily use clang in valgrind tasks
fa70b9ebaaci: Temporarily use clang in valgrind tasks (MarcoFalke)faf3ef4ee7ci: Clarify why valgrind task has gui disabled (MarcoFalke)fadb77169btest: Scale feature_dbcrash.py timeout with factor (MarcoFalke) Pull request description: valgrind currently does not work on GCC compiled executables, due to an upstream bug. https://bugs.kde.org/show_bug.cgi?id=472329 So temporarily switch to clang, so that a long term solution can be figured out in the meantime. ACKs for top commit: l0rinc: ACKfa70b9ebaafanquake: ACKfa70b9ebaa- also checked that it doesn't currently work under aarch64. Tree-SHA512: 2e7c7a709311efa7bf29c3f9b1db60886b189b2d2bfebb516062163d65f0d7e8de3b6fc21c94cd62f6bd7e786e9c36fba55c4bae956b849851eb8b08e772c03e
This commit is contained in:
@@ -80,7 +80,7 @@ class ChainstateWriteCrashTest(BitcoinTestFramework):
|
||||
after a timeout. Returns the utxo hash of the given node."""
|
||||
|
||||
time_start = time.time()
|
||||
while time.time() - time_start < 120:
|
||||
while time.time() - time_start < 120 * self.options.timeout_factor:
|
||||
try:
|
||||
# Any of these RPC calls could throw due to node crash
|
||||
self.start_node(node_index)
|
||||
|
||||
Reference in New Issue
Block a user