Skip to content

Commit d10d381

Browse files
committed
Turn off shrinking for prop_noSwallowedExceptions (for now)
1 parent 9795cd5 commit d10d381

File tree

1 file changed

+6
-1
lines changed
  • test/Test/Database/LSMTree/StateMachine

1 file changed

+6
-1
lines changed

test/Test/Database/LSMTree/StateMachine/DL.hs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,12 @@ import Test.Util.PrettyProxy
3939
tests :: TestTree
4040
tests = testGroup "Test.Database.LSMTree.StateMachine.DL" [
4141
QC.testProperty "prop_example" prop_example
42-
, QC.testProperty "prop_noSwallowedExceptions" prop_noSwallowedExceptions
42+
, QC.testProperty "prop_noSwallowedExceptions" $
43+
-- TODO: see #781. I observed a timeout when this test was running,
44+
-- which might have to do with shrinking taking too long. For now, we'll
45+
-- turn off shrinking until we see a test failure that might explain
46+
-- what's going wrong.
47+
noShrinking prop_noSwallowedExceptions
4348
]
4449

4550
instance DynLogicModel (Lockstep (ModelState IO R.Table))

0 commit comments

Comments
 (0)