test: -debug=0 and -debug=none behave similarly to -nodebug

This commit is contained in:
Daniela Brozzoni 2025-02-10 17:47:39 +01:00
parent a8fedb36a7
commit 7afeaa2469
No known key found for this signature in database
GPG key ID: 7DE4F1FDCED0AB87

View file

@ -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'
]