Skip to content

Commit 669e3f3

Browse files
committed
Reduced the number of tests to 1000
1 parent 197159b commit 669e3f3

File tree

1 file changed

+2
-1
lines changed
  • lambda-buffers-compiler/test/Test/LambdaBuffers

1 file changed

+2
-1
lines changed

lambda-buffers-compiler/test/Test/LambdaBuffers/Compiler.hs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import Test.Tasty.Hedgehog qualified as H
1717

1818
test :: TestTree
1919
test =
20-
adjustOption (\_ -> H.HedgehogTestLimit $ Just 10_000) $
20+
adjustOption (\_ -> H.HedgehogTestLimit $ Just 1000) $
2121
testGroup
2222
"Compiler API tests"
2323
[ allWellFormedCompInpCompile
@@ -51,6 +51,7 @@ allWellFormedCompInpCompileAfterBenignMut =
5151
[ Mut.shuffleModules
5252
, Mut.shuffleTyDefs
5353
]
54+
H.collect mut
5455
compInp' <- H.forAllWith (const "") (Mut.mutFn mut compInp)
5556
let compOut = runCompiler compInp
5657
compOut' = runCompiler compInp'

0 commit comments

Comments
 (0)