Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion quickcheck-dynamic/test/Spec/DynamicLogic/RegistryModel.hs
Original file line number Diff line number Diff line change
Expand Up @@ -354,5 +354,5 @@ tests =
, testProperty "moreActions 10 $ prop_Registry" $ moreActions 10 $ prop_Registry
, testProperty "canRegister" $ propDL canRegister
, testProperty "canRegisterNoUnregister" $ expectFailure $ propDL canRegisterNoUnregister
, testProperty "prop_parRegistryIOSimPor" $ expectFailure $ withMaxSuccess 1000 $ discardAfter 1000 $ prop_parRegistryIOSimPor
, testProperty "prop_parRegistryIOSimPor" $ expectFailure $ withMaxSuccess 10000 $ discardAfter 1000 $ prop_parRegistryIOSimPor
]
2 changes: 1 addition & 1 deletion quickcheck-dynamic/test/Test/QuickCheck/StateModelSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ tests =
prop_longSequences
, testProperty
"IOSimPor finds counterexample in parallel counters"
$ expectFailure prop_counter_parIOSimPor
$ expectFailure $ withMaxSuccess 10000 $ discardAfter 1000 $ prop_counter_parIOSimPor
]

captureTerminal :: Testable p => p -> IO Result
Expand Down
Loading