mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 14:59:39 -04:00
Revert "test: Disable known broken USDT test for now"
This reverts commit faed533743
.
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
This commit is contained in:
parent
ec47ba349d
commit
a0b66b4bff
1 changed files with 1 additions and 4 deletions
|
@ -320,10 +320,7 @@ class MempoolTracepointTest(BitcoinTestFramework):
|
||||||
assert_equal(1, len(events))
|
assert_equal(1, len(events))
|
||||||
event = events[0]
|
event = events[0]
|
||||||
assert_equal(bytes(event.hash)[::-1].hex(), tx["tx"].hash)
|
assert_equal(bytes(event.hash)[::-1].hex(), tx["tx"].hash)
|
||||||
# The next test is already known to fail, so disable it to avoid
|
assert_equal(event.reason.decode("UTF-8"), "min relay fee not met")
|
||||||
# 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()
|
bpf.cleanup()
|
||||||
self.generate(self.wallet, 1)
|
self.generate(self.wallet, 1)
|
||||||
|
|
Loading…
Add table
Reference in a new issue