diff options
author | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-07-17 13:55:09 +0200 |
---|---|---|
committer | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2024-08-02 14:02:42 +0200 |
commit | faed5337435f025811caeb5f782ecbf9683a24b3 (patch) | |
tree | 563efc2674361fc220c37eaf34230f8ea4743b00 /test | |
parent | 357f19539129fae31bbc87275fa0935fc33cade4 (diff) |
test: Disable known broken USDT test for now
(cherry picked from commit faf8be7c32be00f660eba90d3f07313fb25d5d1c)
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/interface_usdt_mempool.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/functional/interface_usdt_mempool.py b/test/functional/interface_usdt_mempool.py index ac096840d8..a088278665 100755 --- a/test/functional/interface_usdt_mempool.py +++ b/test/functional/interface_usdt_mempool.py @@ -296,7 +296,10 @@ class MempoolTracepointTest(BitcoinTestFramework): assert_equal(1, len(events)) event = events[0] assert_equal(bytes(event.hash)[::-1].hex(), tx["tx"].hash) - assert_equal(event.reason.decode("UTF-8"), "min relay fee not met") + # The next test is already known to fail, so disable it to avoid + # wasting CPU time and developer time. See + # https://github.com/bitcoin/bitcoin/issues/27380 + #assert_equal(event.reason.decode("UTF-8"), "min relay fee not met") bpf.cleanup() self.generate(self.wallet, 1) |