File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ checkTrace s env (Node (TraceStep r v (ActionWithPolarity a _)) trs) =
200200 (polarAction act)
201201 (lookUpVar env')
202202 r
203- in computePrecondition s act && checkPost && (null trs || any (checkTrace s' env') trs)
203+ in ( computePrecondition s act || discard) && checkPost && (null trs || any (checkTrace s' env') trs)
204204
205205prepend :: [a ] -> [Tree a ] -> [Tree a ]
206206prepend [] ts = ts
Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ prop_parRegistryIOSimPor (IOSimActions as) =
258258
259259monadicIOSimPOR_ :: Testable a => (forall s . PropertyM (IOSim s ) a ) -> Property
260260monadicIOSimPOR_ prop = forAllBlind prop' $ \ p -> exploreSimTrace id p $ \ _ tr ->
261- either ( flip counterexample False . show ) id $ traceResult False tr
261+ either discard id $ traceResult False tr
262262 where
263263 prop' :: Gen (forall s . IOSim s Property )
264264 prop' = do
You can’t perform that action at this time.
0 commit comments