Skip to content
This repository has been archived by the owner on Jun 18, 2021. It is now read-only.

Commit

Permalink
Increase maxSuccess to 1000 for the CrashAndLogicBugParallel property.
Browse files Browse the repository at this point in the history
  • Loading branch information
stevana committed Jun 19, 2019
1 parent 59f7e88 commit 27e4138
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/Spec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,9 @@ tests docker0 = testGroup "Tests"
, testProperty "LogicBug" (expectFailure (prop_sequential Logic))
, testProperty "RaceBugSequential" (prop_sequential Race)
, testProperty "RaceBugParallel" (expectFailure (prop_parallel Race))
, testProperty "CrashBugParallel" (prop_parallel' Crash)
, testProperty "CrashAndLogicBugParallel" (expectFailure (prop_parallel' CrashAndLogic))
, testProperty "CrashBugParallel" (prop_parallel' Crash)
, testProperty "CrashAndLogicBugParallel"
(expectFailure (withMaxSuccess 1000 (prop_parallel' CrashAndLogic)))
, testProperty "PreconditionFailed" prop_precondition
, testProperty "ExistsCommands" prop_existsCommands
]
Expand Down

0 comments on commit 27e4138

Please sign in to comment.