From 7afeaa24693039730c9ae00c325c2b9d0e2deda1 Mon Sep 17 00:00:00 2001 From: Daniela Brozzoni Date: Mon, 10 Feb 2025 17:47:39 +0100 Subject: [PATCH] test: `-debug=0` and `-debug=none` behave similarly to `-nodebug` --- test/functional/feature_logging.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/functional/feature_logging.py b/test/functional/feature_logging.py index 96b990c1d7a..bc868d19565 100755 --- a/test/functional/feature_logging.py +++ b/test/functional/feature_logging.py @@ -99,8 +99,10 @@ class LoggingTest(BitcoinTestFramework): match=ErrorMatch.PARTIAL_REGEX, ) - self.log.info("Test that -nodebug clears previously specified debug options") + self.log.info("Test that -nodebug,-debug=0,-debug=none clear previously specified debug options") disable_debug_options = [ + '-debug=0', + '-debug=none', '-nodebug' ]