Skip to content

Commit 986e0fe

Browse files
authored
Disable mempool parallel atomic test (#1550)
# Description See #1549
2 parents 7102072 + 75a0f36 commit 986e0fe

File tree

1 file changed

+8
-5
lines changed
  • ouroboros-consensus/test/consensus-test/Test/Consensus/Mempool

1 file changed

+8
-5
lines changed

ouroboros-consensus/test/consensus-test/Test/Consensus/Mempool/StateMachine.hs

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -831,11 +831,14 @@ tests =
831831
\i -> fmap (fmap fst . fst) . genTxs i
832832
, testGroup
833833
"parallel"
834-
[ testProperty "atomic" $
835-
withMaxSuccess 1000 $
836-
prop_mempoolParallel testLedgerConfigNoSizeLimits txMaxBytes' testInitLedger Atomic $
837-
\i -> fmap (fmap fst . fst) . genTxs i
838-
, testProperty "non atomic" $
834+
[ -- See ouroboros-consensus#1549 for why this test is disabled.
835+
836+
-- testProperty "atomic" $
837+
-- withMaxSuccess 1000 $
838+
-- prop_mempoolParallel testLedgerConfigNoSizeLimits txMaxBytes' testInitLedger Atomic $
839+
-- \i -> fmap (fmap fst . fst) . genTxs i
840+
-- ,
841+
testProperty "non atomic" $
839842
withMaxSuccess 10 $
840843
prop_mempoolParallel testLedgerConfigNoSizeLimits txMaxBytes' testInitLedger NonAtomic $
841844
\i -> fmap (fmap fst . fst) . genTxs i

0 commit comments

Comments
 (0)