Skip to content

Commit d09c8bc

Browse files
committed
Merge bitcoin#28088: test: Disable known broken USDT test
faf8be7 test: Disable known broken USDT test (MarcoFalke) Pull request description: The failure is known and running into more failures doesn't help anyone. Not disabling the test would be a waste of CPU and developer time. bitcoin#27380 Top commit has no ACKs. Tree-SHA512: d0469153b00d6b30e10a21bcd52d508fcf9f796ff2468f59aff75020a82c718bcae85caf4b58397dea6fd9e210b501353fd51567f979c6b57d3b1bb23d318216
2 parents c123e1d + faf8be7 commit d09c8bc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/functional/interface_usdt_mempool.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,10 @@ def handle_rejected_event(_, data, __):
307307
self.log.info("Ensuring mempool:rejected event was handled successfully...")
308308
assert_equal(EXPECTED_REJECTED_EVENTS, handled_rejected_events)
309309
assert_equal(bytes(event.hash)[::-1].hex(), tx["tx"].hash)
310-
assert_equal(event.reason.decode("UTF-8"), "min relay fee not met")
310+
# The next test is already known to fail, so disable it to avoid
311+
# wasting CPU time and developer time. See
312+
# https://github.com/bitcoin/bitcoin/issues/27380
313+
#assert_equal(event.reason.decode("UTF-8"), "min relay fee not met")
311314

312315
bpf.cleanup()
313316
self.generate(self.wallet, 1)

0 commit comments

Comments
 (0)