mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-04-05 05:14:51 +02:00
Merge bitcoin/bitcoin#32509: qa: feature_framework_startup_failures.py fixes & improvements (#30660 follow-up)
bf950c4544qa: Improve suppressed errors output (Hodlinator)075352ec8eqa: assert_raises_message() - search in str(e) (Hodlinator)bd8ebbc4abqa: Make --timeout-factor=0 result in a smaller factor (Hodlinator)d8f05e7bf3qa: Fix dormant bug caused by multiple --tmpdir (Hodlinator) Pull request description: * Handle multiple `--tmpdir` args properly. * Handle `--timeout-factor=0` properly (fixes #32506). * Improve readability of expected error message (`assert_raises_message()`). * Make suppressed error output less confusing (`wait_for_rpc_connection()`). ACKs for top commit: i-am-yuvi: re-ACKbf950c4544ismaelsadeeq: Code review and tested ACKbf950c45achow101: ACKbf950c4544janb84: LGTM ACKbf950c4544Tree-SHA512: 8993f53e962231adef9cad92594dc6a8b8e979b1571d1381cd0fffa1929833b2163c68c03b6a6e29995006a3c3121822ec25ac7725e71ccdab8876ac24aae86c
This commit is contained in:
@@ -267,7 +267,7 @@ class BitcoinTestFramework(metaclass=BitcoinTestMetaClass):
|
||||
parser.add_argument("-f", "--fff", help="a dummy argument to fool ipython", default="1")
|
||||
self.options = parser.parse_args()
|
||||
if self.options.timeout_factor == 0:
|
||||
self.options.timeout_factor = 99999
|
||||
self.options.timeout_factor = 999
|
||||
self.options.timeout_factor = self.options.timeout_factor or (4 if self.options.valgrind else 1)
|
||||
self.options.previous_releases_path = previous_releases_path
|
||||
|
||||
|
||||
Reference in New Issue
Block a user