From a0b66b4bffaa6bc354c293785b785c2da2cef4de Mon Sep 17 00:00:00 2001 From: 0xb10c Date: Tue, 21 Jan 2025 15:15:13 +0100 Subject: [PATCH] Revert "test: Disable known broken USDT test for now" This reverts commit faed5337435f025811caeb5f782ecbf9683a24b3. This commit worked around a lifetime issue likely caused by using bpf_usdt_readarg_p(). Since we don't use bpf_usdt_readarg_p() anymore this commit can be reverted. See the discussion in https://github.com/bitcoin/bitcoin/issues/27380#issuecomment-2500962838 --- test/functional/interface_usdt_mempool.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test/functional/interface_usdt_mempool.py b/test/functional/interface_usdt_mempool.py index 15f50e0dc21..75359541722 100755 --- a/test/functional/interface_usdt_mempool.py +++ b/test/functional/interface_usdt_mempool.py @@ -320,10 +320,7 @@ class MempoolTracepointTest(BitcoinTestFramework): assert_equal(1, len(events)) event = events[0] assert_equal(bytes(event.hash)[::-1].hex(), tx["tx"].hash) - # 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") + assert_equal(event.reason.decode("UTF-8"), "min relay fee not met") bpf.cleanup() self.generate(self.wallet, 1)