Skip to content

Commit a0b66b4

Browse files
committed
Revert "test: Disable known broken USDT test for now"
This reverts commit faed533. 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 bitcoin#27380 (comment)
1 parent ec47ba3 commit a0b66b4

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

test/functional/interface_usdt_mempool.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -320,10 +320,7 @@ def handle_rejected_event(_, data, __):
320320
assert_equal(1, len(events))
321321
event = events[0]
322322
assert_equal(bytes(event.hash)[::-1].hex(), tx["tx"].hash)
323-
# The next test is already known to fail, so disable it to avoid
324-
# wasting CPU time and developer time. See
325-
# https://github.com/bitcoin/bitcoin/issues/27380
326-
#assert_equal(event.reason.decode("UTF-8"), "min relay fee not met")
323+
assert_equal(event.reason.decode("UTF-8"), "min relay fee not met")
327324

328325
bpf.cleanup()
329326
self.generate(self.wallet, 1)

0 commit comments

Comments
 (0)