build checks.x86_64-linux.mutation-sydtest-mutation-example

Reproduce this run
  1. 9.13 s [sydtest-mutation-example] classify 0 `shouldBe` "zero"
  2. 9.13 s [sydtest-mutation-example] it "classifies positive numbers" $
  3. 9.13 s [sydtest-mutation-example] - classify 1 `shouldBe` "positive"
  4. 9.13 s [sydtest-mutation-example] + classify -1 `shouldBe` "positive"
  5. 9.13 s [sydtest-mutation-example] added 5 mutations
  6. 9.20 s [sydtest-mutation-example] [4 of 6] Compiling Paths_sydtest_mutation_example ( dist/build/sydtest-mutation-example-test/autogen/Paths_sydtest_mutation_example.hs, dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test-tmp/Paths_sydtest_mutation_example.o )
  7. 9.27 s [sydtest-mutation-example] [5 of 6] Compiling Spec ( test/Spec.hs, dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test-tmp/Spec.o )
  8. 9.27 s [sydtest-mutation-example] mutation: instrumenting Spec
  9. 9.27 s [sydtest-mutation-example] added 0 mutations
  10. 9.31 s [sydtest-mutation-example] [6 of 6] Compiling Main ( test/Main.hs, dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test-tmp/Main.o )
  11. 9.31 s [sydtest-mutation-example] mutation: instrumenting Main
  12. 9.31 s [sydtest-mutation-example] added 0 mutations
  13. 9.64 s [sydtest-mutation-example] [1 of 7] Compiling Example.BoolLibSpec ( test/Example/BoolLibSpec.hs, dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test-tmp/Example/BoolLibSpec.o ) [Impure plugin forced recompilation]
  14. 9.70 s [sydtest-mutation-example] mutation: instrumenting Example.BoolLibSpec
  15. 9.70 s [sydtest-mutation-example] added mutation BoolLit at test/Example/BoolLibSpec.hs:10:32-36
  16. 9.70 s [sydtest-mutation-example] @@ -7,7 +7,7 @@
  17. 9.70 s [sydtest-mutation-example] spec = do
  18. 9.70 s [sydtest-mutation-example] describe "wrapTrue" $
  19. 9.70 s [sydtest-mutation-example] it "is Just True" $
  20. 9.70 s [sydtest-mutation-example] - wrapTrue `shouldBe` Just True
  21. 9.70 s [sydtest-mutation-example] + wrapTrue `shouldBe` Just False
  22. 9.70 s [sydtest-mutation-example]
  23. 9.70 s [sydtest-mutation-example] describe "wrapFalse" $
  24. 9.70 s [sydtest-mutation-example] it "is Just False" $
  25. 9.70 s [sydtest-mutation-example] added mutation BoolLit at test/Example/BoolLibSpec.hs:14:33-38
  26. 9.70 s [sydtest-mutation-example] @@ -11,7 +11,7 @@
  27. 9.70 s [sydtest-mutation-example]
  28. 9.70 s [sydtest-mutation-example] describe "wrapFalse" $
  29. 9.70 s [sydtest-mutation-example] it "is Just False" $
  30. 9.70 s [sydtest-mutation-example] - wrapFalse `shouldBe` Just False
  31. 9.70 s [sydtest-mutation-example] + wrapFalse `shouldBe` Just True
  32. 9.70 s [sydtest-mutation-example]
  33. 9.70 s [sydtest-mutation-example] describe "negateWrapped" $ do
  34. 9.70 s [sydtest-mutation-example] it "negates Just True to Just False" $
  35. 9.70 s [sydtest-mutation-example] added mutation BoolLit at test/Example/BoolLibSpec.hs:18:27-31
  36. 9.70 s [sydtest-mutation-example] @@ -15,7 +15,7 @@
  37. 9.70 s [sydtest-mutation-example]
  38. 9.70 s [sydtest-mutation-example] describe "negateWrapped" $ do
  39. 9.70 s [sydtest-mutation-example] it "negates Just True to Just False" $
  40. 9.70 s [sydtest-mutation-example] - negateWrapped (Just True) `shouldBe` Just False
  41. 9.70 s [sydtest-mutation-example] + negateWrapped (Just False) `shouldBe` Just False
  42. 9.70 s [sydtest-mutation-example] it "negates Just False to Just True" $
  43. 9.70 s [sydtest-mutation-example] negateWrapped (Just False) `shouldBe` Just True
  44. 9.70 s [sydtest-mutation-example] it "leaves Nothing as Nothing" $
  45. 9.70 s [sydtest-mutation-example] added mutation BoolLit at test/Example/BoolLibSpec.hs:18:49-54
  46. 9.70 s [sydtest-mutation-example] @@ -15,7 +15,7 @@
  47. 9.70 s [sydtest-mutation-example]
  48. 9.70 s [sydtest-mutation-example] describe "negateWrapped" $ do
  49. 9.70 s [sydtest-mutation-example] it "negates Just True to Just False" $
  50. 9.70 s [sydtest-mutation-example] - negateWrapped (Just True) `shouldBe` Just False
  51. 9.70 s [sydtest-mutation-example] + negateWrapped (Just True) `shouldBe` Just True
  52. 9.70 s [sydtest-mutation-example] it "negates Just False to Just True" $
  53. 9.70 s [sydtest-mutation-example] negateWrapped (Just False) `shouldBe` Just True
  54. 9.70 s [sydtest-mutation-example] it "leaves Nothing as Nothing" $
  55. 9.70 s [sydtest-mutation-example] added mutation BoolLit at test/Example/BoolLibSpec.hs:20:27-32
  56. 9.70 s [sydtest-mutation-example] @@ -17,6 +17,6 @@
  57. 9.70 s [sydtest-mutation-example] it "negates Just True to Just False" $
  58. 9.70 s [sydtest-mutation-example] negateWrapped (Just True) `shouldBe` Just False
  59. 9.70 s [sydtest-mutation-example] it "negates Just False to Just True" $
  60. 9.70 s [sydtest-mutation-example] - negateWrapped (Just False) `shouldBe` Just True
  61. 9.70 s [sydtest-mutation-example] + negateWrapped (Just True) `shouldBe` Just True
  62. 9.70 s [sydtest-mutation-example] it "leaves Nothing as Nothing" $
  63. 9.70 s [sydtest-mutation-example] negateWrapped Nothing `shouldBe` Nothing
  64. 9.70 s [sydtest-mutation-example] added mutation BoolLit at test/Example/BoolLibSpec.hs:20:50-54
  65. 9.70 s [sydtest-mutation-example] @@ -17,6 +17,6 @@
  66. 9.70 s [sydtest-mutation-example] it "negates Just True to Just False" $
  67. 9.70 s [sydtest-mutation-example] negateWrapped (Just True) `shouldBe` Just False
  68. 9.70 s [sydtest-mutation-example] it "negates Just False to Just True" $
  69. 9.70 s [sydtest-mutation-example] - negateWrapped (Just False) `shouldBe` Just True
  70. 9.70 s [sydtest-mutation-example] + negateWrapped (Just False) `shouldBe` Just False
  71. 9.70 s [sydtest-mutation-example] it "leaves Nothing as Nothing" $
  72. 9.70 s [sydtest-mutation-example] negateWrapped Nothing `shouldBe` Nothing
  73. 9.70 s [sydtest-mutation-example] added 6 mutations
  74. 10.21 s [sydtest-mutation-example] [2 of 7] Compiling Example.LibSpec ( test/Example/LibSpec.hs, dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test-tmp/Example/LibSpec.o ) [Impure plugin forced recompilation]
  75. 10.21 s [sydtest-mutation-example] mutation: instrumenting Example.LibSpec
  76. 10.21 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:10:14-15
  77. 10.21 s [sydtest-mutation-example] @@ -7,6 +7,6 @@
  78. 10.21 s [sydtest-mutation-example] spec = do
  79. 10.21 s [sydtest-mutation-example] describe "addOne" $ do
  80. 10.21 s [sydtest-mutation-example] it "returns 2 for input 1" $
  81. 10.21 s [sydtest-mutation-example] - addOne 1 `shouldBe` 2
  82. 10.21 s [sydtest-mutation-example] + addOne 0 `shouldBe` 2
  83. 10.21 s [sydtest-mutation-example] it "returns 6 for input 5" $
  84. 10.21 s [sydtest-mutation-example] addOne 5 `shouldBe` 6
  85. 10.21 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:10:14-15
  86. 10.21 s [sydtest-mutation-example] @@ -7,6 +7,6 @@
  87. 10.21 s [sydtest-mutation-example] spec = do
  88. 10.21 s [sydtest-mutation-example] describe "addOne" $ do
  89. 10.21 s [sydtest-mutation-example] it "returns 2 for input 1" $
  90. 10.21 s [sydtest-mutation-example] - addOne 1 `shouldBe` 2
  91. 10.21 s [sydtest-mutation-example] + addOne -1 `shouldBe` 2
  92. 10.21 s [sydtest-mutation-example] it "returns 6 for input 5" $
  93. 10.21 s [sydtest-mutation-example] addOne 5 `shouldBe` 6
  94. 10.21 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:10:27-28
  95. 10.21 s [sydtest-mutation-example] @@ -7,6 +7,6 @@
  96. 10.21 s [sydtest-mutation-example] spec = do
  97. 10.21 s [sydtest-mutation-example] describe "addOne" $ do
  98. 10.21 s [sydtest-mutation-example] it "returns 2 for input 1" $
  99. 10.21 s [sydtest-mutation-example] - addOne 1 `shouldBe` 2
  100. 10.21 s [sydtest-mutation-example] + addOne 1 `shouldBe` 0
  101. 10.21 s [sydtest-mutation-example] it "returns 6 for input 5" $
  102. 10.21 s [sydtest-mutation-example] addOne 5 `shouldBe` 6
  103. 10.21 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:10:27-28
  104. 10.21 s [sydtest-mutation-example] @@ -7,6 +7,6 @@
  105. 10.21 s [sydtest-mutation-example] spec = do
  106. 10.21 s [sydtest-mutation-example] describe "addOne" $ do
  107. 10.21 s [sydtest-mutation-example] it "returns 2 for input 1" $
  108. 10.21 s [sydtest-mutation-example] - addOne 1 `shouldBe` 2
  109. 10.21 s [sydtest-mutation-example] + addOne 1 `shouldBe` 1
  110. 10.21 s [sydtest-mutation-example] it "returns 6 for input 5" $
  111. 10.21 s [sydtest-mutation-example] addOne 5 `shouldBe` 6
  112. 10.21 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:10:27-28
  113. 10.21 s [sydtest-mutation-example] @@ -7,6 +7,6 @@
  114. 10.21 s [sydtest-mutation-example] spec = do
  115. 10.21 s [sydtest-mutation-example] describe "addOne" $ do
  116. 10.21 s [sydtest-mutation-example] it "returns 2 for input 1" $
  117. 10.21 s [sydtest-mutation-example] - addOne 1 `shouldBe` 2
  118. 10.21 s [sydtest-mutation-example] + addOne 1 `shouldBe` -2
  119. 10.21 s [sydtest-mutation-example] it "returns 6 for input 5" $
  120. 10.21 s [sydtest-mutation-example] addOne 5 `shouldBe` 6
  121. 10.21 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:12:14-15
  122. 10.21 s [sydtest-mutation-example] @@ -9,4 +9,4 @@
  123. 10.21 s [sydtest-mutation-example] it "returns 2 for input 1" $
  124. 10.21 s [sydtest-mutation-example] addOne 1 `shouldBe` 2
  125. 10.21 s [sydtest-mutation-example] it "returns 6 for input 5" $
  126. 10.21 s [sydtest-mutation-example] - addOne 5 `shouldBe` 6
  127. 10.21 s [sydtest-mutation-example] + addOne 0 `shouldBe` 6
  128. 10.21 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:12:14-15
  129. 10.21 s [sydtest-mutation-example] @@ -9,4 +9,4 @@
  130. 10.21 s [sydtest-mutation-example] it "returns 2 for input 1" $
  131. 10.21 s [sydtest-mutation-example] addOne 1 `shouldBe` 2
  132. 10.21 s [sydtest-mutation-example] it "returns 6 for input 5" $
  133. 10.21 s [sydtest-mutation-example] - addOne 5 `shouldBe` 6
  134. 10.21 s [sydtest-mutation-example] + addOne 1 `shouldBe` 6
  135. 10.21 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:12:14-15
  136. 10.21 s [sydtest-mutation-example] @@ -9,4 +9,4 @@
  137. 10.21 s [sydtest-mutation-example] it "returns 2 for input 1" $
  138. 10.21 s [sydtest-mutation-example] addOne 1 `shouldBe` 2
  139. 10.21 s [sydtest-mutation-example] it "returns 6 for input 5" $
  140. 10.21 s [sydtest-mutation-example] - addOne 5 `shouldBe` 6
  141. 10.21 s [sydtest-mutation-example] + addOne -5 `shouldBe` 6
  142. 10.21 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:12:27-28
  143. 10.21 s [sydtest-mutation-example] @@ -9,4 +9,4 @@
  144. 10.21 s [sydtest-mutation-example] it "returns 2 for input 1" $
  145. 10.21 s [sydtest-mutation-example] addOne 1 `shouldBe` 2
  146. 10.21 s [sydtest-mutation-example] it "returns 6 for input 5" $
  147. 10.21 s [sydtest-mutation-example] - addOne 5 `shouldBe` 6
  148. 10.21 s [sydtest-mutation-example] + addOne 5 `shouldBe` 0
  149. 10.21 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:12:27-28
  150. 10.21 s [sydtest-mutation-example] @@ -9,4 +9,4 @@
  151. 10.21 s [sydtest-mutation-example] it "returns 2 for input 1" $
  152. 10.21 s [sydtest-mutation-example] addOne 1 `shouldBe` 2
  153. 10.21 s [sydtest-mutation-example] it "returns 6 for input 5" $
  154. 10.21 s [sydtest-mutation-example] - addOne 5 `shouldBe` 6
  155. 10.21 s [sydtest-mutation-example] + addOne 5 `shouldBe` 1
  156. 10.21 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:12:27-28
  157. 10.21 s [sydtest-mutation-example] @@ -9,4 +9,4 @@
  158. 10.21 s [sydtest-mutation-example] it "returns 2 for input 1" $
  159. 10.21 s [sydtest-mutation-example] addOne 1 `shouldBe` 2
  160. 10.21 s [sydtest-mutation-example] it "returns 6 for input 5" $
  161. 10.21 s [sydtest-mutation-example] - addOne 5 `shouldBe` 6
  162. 10.21 s [sydtest-mutation-example] + addOne 5 `shouldBe` -6
  163. 10.21 s [sydtest-mutation-example] added 11 mutations
  164. 10.26 s [sydtest-mutation-example] [3 of 7] Compiling Example.OtherwiseLibSpec ( test/Example/OtherwiseLibSpec.hs, dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test-tmp/Example/OtherwiseLibSpec.o ) [Impure plugin forced recompilation]
  165. 10.27 s [sydtest-mutation-example] mutation: instrumenting Example.OtherwiseLibSpec
  166. 10.27 s [sydtest-mutation-example] added mutation IntLit at test/Example/OtherwiseLibSpec.hs:10:18-19
  167. 10.27 s [sydtest-mutation-example] @@ -7,7 +7,7 @@
  168. 10.27 s [sydtest-mutation-example] spec =
  169. 10.27 s [sydtest-mutation-example] describe "classify" $ do
  170. 10.27 s [sydtest-mutation-example] it "classifies negative numbers" $
  171. 10.27 s [sydtest-mutation-example] - classify (-1) `shouldBe` "negative"
  172. 10.27 s [sydtest-mutation-example] + classify (-0) `shouldBe` "negative"
  173. 10.27 s [sydtest-mutation-example] it "classifies zero" $
  174. 10.27 s [sydtest-mutation-example] classify 0 `shouldBe` "zero"
  175. 10.27 s [sydtest-mutation-example] it "classifies positive numbers" $
  176. 10.27 s [sydtest-mutation-example] added mutation IntLit at test/Example/OtherwiseLibSpec.hs:10:18-19
  177. 10.27 s [sydtest-mutation-example] @@ -7,7 +7,7 @@
  178. 10.27 s [sydtest-mutation-example] spec =
  179. 10.27 s [sydtest-mutation-example] describe "classify" $ do
  180. 10.27 s [sydtest-mutation-example] it "classifies negative numbers" $
  181. 10.27 s [sydtest-mutation-example] - classify (-1) `shouldBe` "negative"
  182. 10.27 s [sydtest-mutation-example] + classify (--1) `shouldBe` "negative"
  183. 10.27 s [sydtest-mutation-example] it "classifies zero" $
  184. 10.27 s [sydtest-mutation-example] classify 0 `shouldBe` "zero"
  185. 10.27 s [sydtest-mutation-example] it "classifies positive numbers" $
  186. 10.27 s [sydtest-mutation-example] added mutation IntLit at test/Example/OtherwiseLibSpec.hs:12:16-17
  187. 10.27 s [sydtest-mutation-example] @@ -9,6 +9,6 @@
  188. 10.27 s [sydtest-mutation-example] it "classifies negative numbers" $
  189. 10.27 s [sydtest-mutation-example] classify (-1) `shouldBe` "negative"
  190. 10.27 s [sydtest-mutation-example] it "classifies zero" $
  191. 10.27 s [sydtest-mutation-example] - classify 0 `shouldBe` "zero"
  192. 10.27 s [sydtest-mutation-example] + classify 1 `shouldBe` "zero"
  193. 10.27 s [sydtest-mutation-example] it "classifies positive numbers" $
  194. 10.27 s [sydtest-mutation-example] classify 1 `shouldBe` "positive"
  195. 10.27 s [sydtest-mutation-example] added mutation IntLit at test/Example/OtherwiseLibSpec.hs:14:16-17
  196. 10.27 s [sydtest-mutation-example] @@ -11,4 +11,4 @@
  197. 10.27 s [sydtest-mutation-example] it "classifies zero" $
  198. 10.27 s [sydtest-mutation-example] classify 0 `shouldBe` "zero"
  199. 10.27 s [sydtest-mutation-example] it "classifies positive numbers" $
  200. 10.27 s [sydtest-mutation-example] - classify 1 `shouldBe` "positive"
  201. 10.27 s [sydtest-mutation-example] + classify 0 `shouldBe` "positive"
  202. 10.27 s [sydtest-mutation-example] added mutation IntLit at test/Example/OtherwiseLibSpec.hs:14:16-17
  203. 10.27 s [sydtest-mutation-example] @@ -11,4 +11,4 @@
  204. 10.27 s [sydtest-mutation-example] it "classifies zero" $
  205. 10.27 s [sydtest-mutation-example] classify 0 `shouldBe` "zero"
  206. 10.27 s [sydtest-mutation-example] it "classifies positive numbers" $
  207. 10.27 s [sydtest-mutation-example] - classify 1 `shouldBe` "positive"
  208. 10.27 s [sydtest-mutation-example] + classify -1 `shouldBe` "positive"
  209. 10.27 s [sydtest-mutation-example] added 5 mutations
  210. 10.32 s [sydtest-mutation-example] [4 of 7] Compiling Paths_sydtest_mutation_example ( dist/build/sydtest-mutation-example-test/autogen/Paths_sydtest_mutation_example.hs, dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test-tmp/Paths_sydtest_mutation_example.o ) [Impure plugin forced recompilation]
  211. 10.40 s [sydtest-mutation-example] [5 of 7] Compiling Spec ( test/Spec.hs, dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test-tmp/Spec.o ) [Impure plugin forced recompilation]
  212. 10.40 s [sydtest-mutation-example] mutation: instrumenting Spec
  213. 10.40 s [sydtest-mutation-example] added 0 mutations
  214. 10.40 s [sydtest-mutation-example] [6 of 7] Compiling Main ( test/Main.hs, dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test-tmp/Main.o ) [Impure plugin forced recompilation]
  215. 10.40 s [sydtest-mutation-example] mutation: instrumenting Main
  216. 10.40 s [sydtest-mutation-example] added 0 mutations
  217. 10.43 s [sydtest-mutation-example] [7 of 7] Linking dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test
  218. 11.82 s [sydtest-mutation-example] mutation-nix: manifest output at /nix/store/vdm1wfxsjg3kjsdazqjj59bxhinhi8kw-sydtest-mutation-example-0.0.0.0-manifest:
  219. 11.82 s [sydtest-mutation-example] total 80
  220. 11.82 s [sydtest-mutation-example] drwxr-xr-x 2 nixbld nixbld 4096 May 13 16:03 .
  221. 11.82 s [sydtest-mutation-example] drwxrwxr-t 314 nobody nixbld 32768 May 13 16:03 ..
  222. 11.82 s [sydtest-mutation-example] -rw-r--r-- 1 nixbld nixbld 1018 May 13 16:03 Example.BoolLib.json
  223. 11.82 s [sydtest-mutation-example] -rw-r--r-- 1 nixbld nixbld 3642 May 13 16:03 Example.BoolLibSpec.json
  224. 11.82 s [sydtest-mutation-example] -rw-r--r-- 1 nixbld nixbld 4044 May 13 16:03 Example.FunctionExceptionLib.json
  225. 11.82 s [sydtest-mutation-example] -rw-r--r-- 1 nixbld nixbld 930 May 13 16:03 Example.Lib.json
  226. 11.82 s [sydtest-mutation-example] -rw-r--r-- 1 nixbld nixbld 5097 May 13 16:03 Example.LibSpec.json
  227. 11.82 s [sydtest-mutation-example] -rw-r--r-- 1 nixbld nixbld 2896 May 13 16:03 Example.OtherwiseLib.json
  228. 11.82 s [sydtest-mutation-example] -rw-r--r-- 1 nixbld nixbld 2797 May 13 16:03 Example.OtherwiseLibSpec.json
  229. 11.82 s [sydtest-mutation-example] -rw-r--r-- 1 nixbld nixbld 982 May 13 16:03 Example.UntestedLib.json
  230. 11.82 s [sydtest-mutation-example] -rw-r--r-- 1 nixbld nixbld 2 May 13 16:03 Main.json
  231. 11.82 s [sydtest-mutation-example] -rw-r--r-- 1 nixbld nixbld 2 May 13 16:03 Spec.json
  232. 11.83 s [sydtest-mutation-example] Phase: checkPhase
  233. 12.14 s [sydtest-mutation-example] Running 1 test suites...
  234. 12.14 s [sydtest-mutation-example] Test suite sydtest-mutation-example-test: RUNNING...
  235. 12.16 s [sydtest-mutation-example] Tests:
  236. 12.16 s [sydtest-mutation-example]
  237. 12.16 s [sydtest-mutation-example] Example.LibSpec
  238. 12.16 s [sydtest-mutation-example] addOne
  239. 12.16 s [sydtest-mutation-example] returns 6 for input 5 0.35 ms
  240. 12.16 s [sydtest-mutation-example] returns 2 for input 1 0.36 ms
  241. 12.16 s [sydtest-mutation-example] Example.BoolLibSpec
  242. 12.16 s [sydtest-mutation-example] wrapTrue
  243. 12.16 s [sydtest-mutation-example] is Just True 0.30 ms
  244. 12.16 s [sydtest-mutation-example] wrapFalse
  245. 12.16 s [sydtest-mutation-example] is Just False 0.32 ms
  246. 12.16 s [sydtest-mutation-example] negateWrapped
  247. 12.16 s [sydtest-mutation-example] negates Just True to Just False 0.36 ms
  248. 12.16 s [sydtest-mutation-example] leaves Nothing as Nothing 0.01 ms
  249. 12.16 s [sydtest-mutation-example] negates Just False to Just True 0.27 ms
  250. 12.16 s [sydtest-mutation-example] Example.OtherwiseLibSpec
  251. 12.16 s [sydtest-mutation-example] classify
  252. 12.16 s [sydtest-mutation-example] classifies negative numbers 0.20 ms
  253. 12.16 s [sydtest-mutation-example] classifies zero 0.15 ms
  254. 12.16 s [sydtest-mutation-example] classifies positive numbers 0.28 ms
  255. 12.16 s [sydtest-mutation-example]
  256. 12.16 s [sydtest-mutation-example] Passed: 10
  257. 12.16 s [sydtest-mutation-example] Failed: 0
  258. 12.16 s [sydtest-mutation-example] Sum of test runtimes: 0.00 seconds
  259. 12.16 s [sydtest-mutation-example] Test suite took: 0.00 seconds
  260. 12.16 s [sydtest-mutation-example]
  261. 12.16 s [sydtest-mutation-example] Test suite sydtest-mutation-example-test: PASS
  262. 12.16 s [sydtest-mutation-example] Test suite logged to:
  263. 12.16 s [sydtest-mutation-example] dist/test/sydtest-mutation-example-0.0.0.0-sydtest-mutation-example-test.log
  264. 12.16 s [sydtest-mutation-example] 1 of 1 test suites (1 of 1 test cases) passed.
  265. 12.17 s [sydtest-mutation-example] Phase: haddockPhase
  266. 12.18 s [sydtest-mutation-example] Phase: installPhase
  267. 12.27 s [sydtest-mutation-example] Installing library in /nix/store/i9016nhwmix1d8365vcdcsiz8jdhxjgs-sydtest-mutation-example-0.0.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA
  268. 12.46 s [sydtest-mutation-example] Phase: fixupPhase
  269. 12.48 s [sydtest-mutation-example] shrinking RPATHs of ELF executables and libraries in /nix/store/i9016nhwmix1d8365vcdcsiz8jdhxjgs-sydtest-mutation-example-0.0.0.0
  270. 12.48 s [sydtest-mutation-example] shrinking /nix/store/i9016nhwmix1d8365vcdcsiz8jdhxjgs-sydtest-mutation-example-0.0.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHSsydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA-ghc9.10.3.so
  271. 12.50 s [sydtest-mutation-example] checking for references to /build/ in /nix/store/i9016nhwmix1d8365vcdcsiz8jdhxjgs-sydtest-mutation-example-0.0.0.0...
  272. 12.52 s [sydtest-mutation-example] patching script interpreter paths in /nix/store/i9016nhwmix1d8365vcdcsiz8jdhxjgs-sydtest-mutation-example-0.0.0.0
  273. 12.53 s [sydtest-mutation-example] stripping (with command strip and flags -S -p) in /nix/store/i9016nhwmix1d8365vcdcsiz8jdhxjgs-sydtest-mutation-example-0.0.0.0/lib
  274. 12.57 s [sydtest-mutation-example] shrinking RPATHs of ELF executables and libraries in /nix/store/vdm1wfxsjg3kjsdazqjj59bxhinhi8kw-sydtest-mutation-example-0.0.0.0-manifest
  275. 12.57 s [sydtest-mutation-example] checking for references to /build/ in /nix/store/vdm1wfxsjg3kjsdazqjj59bxhinhi8kw-sydtest-mutation-example-0.0.0.0-manifest...
  276. 12.58 s [sydtest-mutation-example] patching script interpreter paths in /nix/store/vdm1wfxsjg3kjsdazqjj59bxhinhi8kw-sydtest-mutation-example-0.0.0.0-manifest
  277. 12.64 s Progress: 1 of 7 built
  278. 12.68 s Building sydtest-mutation-example-gen-source
  279. 13.03 s [sydtest-mutation-example-gen-source] Phase: setupCompilerEnvironmentPhase
  280. 13.03 s [sydtest-mutation-example-gen-source] Build with /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3.
  281. 13.48 s [sydtest-mutation-example-gen-source] Phase: unpackPhase
  282. 13.49 s [sydtest-mutation-example-gen-source] unpacking source archive /nix/store/n9557gqf8aa0i243cv1m4r0wh5ff57x5-sydtest-mutation-example-gen
  283. 13.49 s [sydtest-mutation-example-gen-source] source root is sydtest-mutation-example-gen
  284. 13.50 s [sydtest-mutation-example-gen-source] Phase: patchPhase
  285. 13.51 s [sydtest-mutation-example-gen-source] Phase: compileBuildDriverPhase
  286. 13.52 s [sydtest-mutation-example-gen-source] setupCompileFlags: -package-db=/build/tmp.iQCCuvHga0/setup-package.conf.d -threaded
  287. 13.57 s [sydtest-mutation-example-gen-source] [1 of 2] Compiling Main ( /nix/store/4mdp8nhyfddh7bllbi7xszz7k9955n79-Setup.hs, /build/tmp.iQCCuvHga0/Main.o )
  288. 13.61 s [sydtest-mutation-example-gen-source] [2 of 2] Linking Setup
  289. 14.91 s [sydtest-mutation-example-gen-source] Phase: updateAutotoolsGnuConfigScriptsPhase
  290. 14.92 s [sydtest-mutation-example-gen-source] Phase: configurePhase
  291. 14.93 s [sydtest-mutation-example-gen-source] configureFlags: --verbose --prefix=/nix/store/ix3n72hkzr7hci5impkfkp2hifj45j10-sydtest-mutation-example-gen-source-0.0.0.0 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --docdir=/share/doc/sydtest-mutation-example-gen-0.0.0.0 --with-gcc=gcc --package-db=/build/tmp.iQCCuvHga0/package.conf.d --ghc-option=-j16 --ghc-option=+RTS --ghc-option=-A64M --ghc-option=-RTS --enable-library-profiling --profiling-detail=exported-functions --disable-profiling --enable-shared --disable-coverage --enable-static --disable-executable-dynamic --enable-tests --enable-benchmarks --enable-library-vanilla --disable-library-for-ghci --enable-split-sections --enable-library-stripping --enable-executable-stripping --ghc-option=-haddock --ghc-options=-O2 --ghc-options=-Wall --ghc-options=-Wincomplete-uni-patterns --ghc-options=-Wincomplete-record-updates --ghc-options=-Wpartial-fields --ghc-options=-Widentities --ghc-options=-Wredundant-constraints --ghc-options=-Wcpp-undef --ghc-options=-Wunused-packages --ghc-options=-Werror --ghc-options=-Wno-deprecations --extra-lib-dirs=/nix/store/ffyzkisqs4vc4mg28bwwlyqjf8i9ph6b-ncurses-6.5/lib --extra-lib-dirs=/nix/store/n28qgdj8c1q41kf7n4y1jxa6ckp85m3c-libffi-3.5.2/lib --extra-lib-dirs=/nix/store/1b6h99dw7bk4wbn77kbalih42zbc67m1-elfutils-0.194/lib --extra-lib-dirs=/nix/store/hi0ar880110k6jsmmili7dh1gq3cg2a9-gmp-with-cxx-6.3.0/lib --extra-lib-dirs=/nix/store/g09cflpnp4g80q56sj9dng1qzv4v4ybc-numactl-2.0.18/lib --extra-lib-dirs=/nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/lib
  292. 14.94 s [sydtest-mutation-example-gen-source] Using Parsec parser
  293. 14.94 s [sydtest-mutation-example-gen-source] Configuring sydtest-mutation-example-gen-0.0.0.0...
  294. 15.58 s [sydtest-mutation-example-gen-source] Dependency QuickCheck: using QuickCheck-2.15.0.1
  295. 15.58 s [sydtest-mutation-example-gen-source] Dependency base >=4.7 && <5: using base-4.20.2.0
  296. 15.62 s [sydtest-mutation-example-gen-source] Dependency QuickCheck: using QuickCheck-2.15.0.1
  297. 15.62 s [sydtest-mutation-example-gen-source] Dependency base >=4.7 && <5: using base-4.20.2.0
  298. 15.62 s [sydtest-mutation-example-gen-source] Dependency sydtest: using sydtest-0.23.0.2
  299. 15.62 s [sydtest-mutation-example-gen-source] Dependency sydtest-mutation-example: using sydtest-mutation-example-0.0.0.0
  300. 15.62 s [sydtest-mutation-example-gen-source] Dependency sydtest-mutation-example-gen: using
  301. 15.62 s [sydtest-mutation-example-gen-source] sydtest-mutation-example-gen-0.0.0.0
  302. 15.62 s [sydtest-mutation-example-gen-source] Source component graph:
  303. 15.62 s [sydtest-mutation-example-gen-source] component lib
  304. 15.62 s [sydtest-mutation-example-gen-source] component test:sydtest-mutation-example-gen-test dependency lib
  305. 15.62 s [sydtest-mutation-example-gen-source] Configured component graph:
  306. 15.62 s [sydtest-mutation-example-gen-source] component sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  307. 15.62 s [sydtest-mutation-example-gen-source] include QuickCheck-2.15.0.1-8fVC1qSJKj9H9pvMjJXUwU
  308. 15.62 s [sydtest-mutation-example-gen-source] include base-4.20.2.0-64da
  309. 15.62 s [sydtest-mutation-example-gen-source] component sydtest-mutation-example-gen-0.0.0.0-B8LMoSk4IJL2JKKau1M348-sydtest-mutation-example-gen-test
  310. 15.62 s [sydtest-mutation-example-gen-source] include QuickCheck-2.15.0.1-8fVC1qSJKj9H9pvMjJXUwU
  311. 15.62 s [sydtest-mutation-example-gen-source] include base-4.20.2.0-64da
  312. 15.62 s [sydtest-mutation-example-gen-source] include sydtest-0.23.0.2-RzVaEpJISaERaSrCHYFLw
  313. 15.62 s [sydtest-mutation-example-gen-source] include sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA
  314. 15.62 s [sydtest-mutation-example-gen-source] include sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  315. 15.62 s [sydtest-mutation-example-gen-source] Linked component graph:
  316. 15.62 s [sydtest-mutation-example-gen-source] unit sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  317. 15.62 s [sydtest-mutation-example-gen-source] include QuickCheck-2.15.0.1-8fVC1qSJKj9H9pvMjJXUwU
  318. 15.62 s [sydtest-mutation-example-gen-source] include base-4.20.2.0-64da
  319. 15.62 s [sydtest-mutation-example-gen-source] Example.Gen=sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ:Example.Gen
  320. 15.62 s [sydtest-mutation-example-gen-source] unit sydtest-mutation-example-gen-0.0.0.0-B8LMoSk4IJL2JKKau1M348-sydtest-mutation-example-gen-test
  321. 15.62 s [sydtest-mutation-example-gen-source] include QuickCheck-2.15.0.1-8fVC1qSJKj9H9pvMjJXUwU
  322. 15.62 s [sydtest-mutation-example-gen-source] include base-4.20.2.0-64da
  323. 15.62 s [sydtest-mutation-example-gen-source] include sydtest-0.23.0.2-RzVaEpJISaERaSrCHYFLw
  324. 15.62 s [sydtest-mutation-example-gen-source] include sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA
  325. 15.62 s [sydtest-mutation-example-gen-source] include sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  326. 15.62 s [sydtest-mutation-example-gen-source] Ready component graph:
  327. 15.62 s [sydtest-mutation-example-gen-source] definite sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  328. 15.62 s [sydtest-mutation-example-gen-source] depends QuickCheck-2.15.0.1-8fVC1qSJKj9H9pvMjJXUwU
  329. 15.62 s [sydtest-mutation-example-gen-source] depends base-4.20.2.0-64da
  330. 15.62 s [sydtest-mutation-example-gen-source] definite sydtest-mutation-example-gen-0.0.0.0-B8LMoSk4IJL2JKKau1M348-sydtest-mutation-example-gen-test
  331. 15.62 s [sydtest-mutation-example-gen-source] depends QuickCheck-2.15.0.1-8fVC1qSJKj9H9pvMjJXUwU
  332. 15.62 s [sydtest-mutation-example-gen-source] depends base-4.20.2.0-64da
  333. 15.62 s [sydtest-mutation-example-gen-source] depends sydtest-0.23.0.2-RzVaEpJISaERaSrCHYFLw
  334. 15.62 s [sydtest-mutation-example-gen-source] depends sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA
  335. 15.62 s [sydtest-mutation-example-gen-source] depends sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  336. 15.62 s [sydtest-mutation-example-gen-source] Using Cabal-3.12.1.0 compiled by ghc-9.10
  337. 15.62 s [sydtest-mutation-example-gen-source] Using compiler: ghc-9.10.3
  338. 15.62 s [sydtest-mutation-example-gen-source] Using install prefix:
  339. 15.62 s [sydtest-mutation-example-gen-source] /nix/store/ix3n72hkzr7hci5impkfkp2hifj45j10-sydtest-mutation-example-gen-source-0.0.0.0
  340. 15.62 s [sydtest-mutation-example-gen-source] Executables installed in:
  341. 15.62 s [sydtest-mutation-example-gen-source] /nix/store/ix3n72hkzr7hci5impkfkp2hifj45j10-sydtest-mutation-example-gen-source-0.0.0.0/bin
  342. 15.62 s [sydtest-mutation-example-gen-source] Libraries installed in:
  343. 15.62 s [sydtest-mutation-example-gen-source] /nix/store/ix3n72hkzr7hci5impkfkp2hifj45j10-sydtest-mutation-example-gen-source-0.0.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  344. 15.62 s [sydtest-mutation-example-gen-source] Dynamic Libraries installed in:
  345. 15.62 s [sydtest-mutation-example-gen-source] /nix/store/ix3n72hkzr7hci5impkfkp2hifj45j10-sydtest-mutation-example-gen-source-0.0.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6
  346. 15.62 s [sydtest-mutation-example-gen-source] Private executables installed in:
  347. 15.62 s [sydtest-mutation-example-gen-source] /nix/store/ix3n72hkzr7hci5impkfkp2hifj45j10-sydtest-mutation-example-gen-source-0.0.0.0/libexec/x86_64-linux-ghc-9.10.3-05f6/sydtest-mutation-example-gen-0.0.0.0
  348. 15.62 s [sydtest-mutation-example-gen-source] Data files installed in:
  349. 15.62 s [sydtest-mutation-example-gen-source] /nix/store/ix3n72hkzr7hci5impkfkp2hifj45j10-sydtest-mutation-example-gen-source-0.0.0.0/share/x86_64-linux-ghc-9.10.3-05f6/sydtest-mutation-example-gen-0.0.0.0
  350. 15.62 s [sydtest-mutation-example-gen-source] Documentation installed in: /share/doc/sydtest-mutation-example-gen-0.0.0.0
  351. 15.62 s [sydtest-mutation-example-gen-source] Configuration files installed in:
  352. 15.62 s [sydtest-mutation-example-gen-source] /nix/store/ix3n72hkzr7hci5impkfkp2hifj45j10-sydtest-mutation-example-gen-source-0.0.0.0/etc
  353. 15.62 s [sydtest-mutation-example-gen-source] No alex found
  354. 15.62 s [sydtest-mutation-example-gen-source] Using ar found on system at:
  355. 15.62 s [sydtest-mutation-example-gen-source] /nix/store/iz5lckcsg66r223si2gck7csk2hihj0m-binutils-wrapper-2.44/bin/ar
  356. 15.62 s [sydtest-mutation-example-gen-source] No c2hs found
  357. 15.62 s [sydtest-mutation-example-gen-source] No cpphs found
  358. 15.62 s [sydtest-mutation-example-gen-source] No doctest found
  359. 15.62 s [sydtest-mutation-example-gen-source] Using gcc version 14.3.0 given by user at:
  360. 15.62 s [sydtest-mutation-example-gen-source] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/gcc
  361. 15.62 s [sydtest-mutation-example-gen-source] Using ghc version 9.10.3 found on system at:
  362. 15.62 s [sydtest-mutation-example-gen-source] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/ghc
  363. 15.62 s [sydtest-mutation-example-gen-source] Using ghc-pkg version 9.10.3 found on system at:
  364. 15.62 s [sydtest-mutation-example-gen-source] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/ghc-pkg-9.10.3
  365. 15.62 s [sydtest-mutation-example-gen-source] No ghcjs found
  366. 15.62 s [sydtest-mutation-example-gen-source] No ghcjs-pkg found
  367. 15.62 s [sydtest-mutation-example-gen-source] No greencard found
  368. 15.62 s [sydtest-mutation-example-gen-source] Using haddock version 2.31.1 found on system at:
  369. 15.62 s [sydtest-mutation-example-gen-source] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/haddock-ghc-9.10.3
  370. 15.62 s [sydtest-mutation-example-gen-source] No happy found
  371. 15.62 s [sydtest-mutation-example-gen-source] Using haskell-suite found on system at: haskell-suite-dummy-location
  372. 15.62 s [sydtest-mutation-example-gen-source] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
  373. 15.62 s [sydtest-mutation-example-gen-source] No hmake found
  374. 15.62 s [sydtest-mutation-example-gen-source] Using hpc version 0.69 found on system at:
  375. 15.62 s [sydtest-mutation-example-gen-source] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/hpc-ghc-9.10.3
  376. 15.62 s [sydtest-mutation-example-gen-source] Using hsc2hs version 0.68.10 found on system at:
  377. 15.62 s [sydtest-mutation-example-gen-source] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/hsc2hs-ghc-9.10.3
  378. 15.62 s [sydtest-mutation-example-gen-source] Using hscolour version 1.25 found on system at:
  379. 15.62 s [sydtest-mutation-example-gen-source] /nix/store/f755skyzf4jvfx3crwq9mmh3x4lsaz8i-hscolour-1.25/bin/HsColour
  380. 15.62 s [sydtest-mutation-example-gen-source] No jhc found
  381. 15.62 s [sydtest-mutation-example-gen-source] Using ld found on system at:
  382. 15.62 s [sydtest-mutation-example-gen-source] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/ld
  383. 15.62 s [sydtest-mutation-example-gen-source] No pkg-config found
  384. 15.62 s [sydtest-mutation-example-gen-source] Using runghc version 9.10.3 found on system at:
  385. 15.62 s [sydtest-mutation-example-gen-source] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/runghc-9.10.3
  386. 15.62 s [sydtest-mutation-example-gen-source] Using strip version 2.44 found on system at:
  387. 15.62 s [sydtest-mutation-example-gen-source] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/strip
  388. 15.62 s [sydtest-mutation-example-gen-source] Using tar found on system at:
  389. 15.63 s [sydtest-mutation-example-gen-source] /nix/store/xl6pd2spjajwcpq09fnmnjv5psqmlmma-gnutar-1.35/bin/tar
  390. 15.63 s [sydtest-mutation-example-gen-source] No uhc found
  391. 15.98 s [sydtest-mutation-example-gen-source] Phase: buildPhase
  392. 15.99 s [sydtest-mutation-example-gen-source] Distribution quality errors:
  393. 15.99 s [sydtest-mutation-example-gen-source] [no-syn-desc] No 'synopsis' or 'description' field.
  394. 15.99 s [sydtest-mutation-example-gen-source] Distribution quality warnings:
  395. 15.99 s [sydtest-mutation-example-gen-source] [no-license-file] A 'license-file' is not specified.
  396. 15.99 s [sydtest-mutation-example-gen-source] [missing-upper-bounds] On library, these packages miss upper bounds:
  397. 15.99 s [sydtest-mutation-example-gen-source] - QuickCheck
  398. 15.99 s [sydtest-mutation-example-gen-source] Please add them. There is more information at https://pvp.haskell.org/
  399. 15.99 s [sydtest-mutation-example-gen-source] Note: the public hackage server would reject this package.
  400. 15.99 s [sydtest-mutation-example-gen-source] Building source dist for sydtest-mutation-example-gen-0.0.0.0...
  401. 16.00 s [sydtest-mutation-example-gen-source] Source tarball created: dist/sydtest-mutation-example-gen-0.0.0.0.tar.gz
  402. 16.00 s [sydtest-mutation-example-gen-source] Phase: checkPhase
  403. 16.01 s [sydtest-mutation-example-gen-source] Phase: haddockPhase
  404. 16.01 s [sydtest-mutation-example-gen-source] Phase: installPhase
  405. 16.02 s [sydtest-mutation-example-gen-source] Phase: fixupPhase
  406. 16.05 s Progress: 2 of 6 built
  407. 16.11 s Building sydtest-mutation-example-gen
  408. 16.14 s Building sydtest-mutation-example-gen
  409. 16.47 s [sydtest-mutation-example-gen] Phase: setupCompilerEnvironmentPhase
  410. 16.47 s [sydtest-mutation-example-gen] Build with /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3.
  411. 16.51 s [sydtest-mutation-example-gen] Phase: setupCompilerEnvironmentPhase
  412. 16.51 s [sydtest-mutation-example-gen] Build with /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3.
  413. 16.94 s [sydtest-mutation-example-gen] Phase: unpackPhase
  414. 16.94 s [sydtest-mutation-example-gen] unpacking source archive /nix/store/ix3n72hkzr7hci5impkfkp2hifj45j10-sydtest-mutation-example-gen-source-0.0.0.0/sydtest-mutation-example-gen-0.0.0.0.tar.gz
  415. 16.95 s [sydtest-mutation-example-gen] source root is sydtest-mutation-example-gen-0.0.0.0
  416. 16.96 s [sydtest-mutation-example-gen] setting SOURCE_DATE_EPOCH to timestamp 1778688237 of file "sydtest-mutation-example-gen-0.0.0.0/test/Spec.hs"
  417. 16.96 s [sydtest-mutation-example-gen] warning: file "sydtest-mutation-example-gen-0.0.0.0/test/Spec.hs" may be generated; SOURCE_DATE_EPOCH may be non-deterministic
  418. 16.96 s [sydtest-mutation-example-gen] Phase: patchPhase
  419. 16.97 s [sydtest-mutation-example-gen] Phase: compileBuildDriverPhase
  420. 16.97 s [sydtest-mutation-example-gen] setupCompileFlags: -package-db=/build/tmp.yoTXNYB684/setup-package.conf.d -threaded
  421. 16.98 s [sydtest-mutation-example-gen] Phase: unpackPhase
  422. 16.98 s [sydtest-mutation-example-gen] unpacking source archive /nix/store/ix3n72hkzr7hci5impkfkp2hifj45j10-sydtest-mutation-example-gen-source-0.0.0.0/sydtest-mutation-example-gen-0.0.0.0.tar.gz
  423. 16.99 s [sydtest-mutation-example-gen] source root is sydtest-mutation-example-gen-0.0.0.0
  424. 16.99 s [sydtest-mutation-example-gen] setting SOURCE_DATE_EPOCH to timestamp 1778688237 of file "sydtest-mutation-example-gen-0.0.0.0/test/Spec.hs"
  425. 16.99 s [sydtest-mutation-example-gen] warning: file "sydtest-mutation-example-gen-0.0.0.0/test/Spec.hs" may be generated; SOURCE_DATE_EPOCH may be non-deterministic
  426. 17.00 s [sydtest-mutation-example-gen] Phase: patchPhase
  427. 17.01 s [sydtest-mutation-example-gen] Phase: compileBuildDriverPhase
  428. 17.01 s [sydtest-mutation-example-gen] setupCompileFlags: -package-db=/build/tmp.4m8eZOx9Y9/setup-package.conf.d -threaded
  429. 17.03 s [sydtest-mutation-example-gen] [1 of 2] Compiling Main ( Setup.hs, /build/tmp.yoTXNYB684/Main.o )
  430. 17.06 s [sydtest-mutation-example-gen] [1 of 2] Compiling Main ( Setup.hs, /build/tmp.4m8eZOx9Y9/Main.o )
  431. 17.07 s [sydtest-mutation-example-gen] [2 of 2] Linking Setup
  432. 17.11 s [sydtest-mutation-example-gen] [2 of 2] Linking Setup
  433. 18.38 s [sydtest-mutation-example-gen] Phase: updateAutotoolsGnuConfigScriptsPhase
  434. 18.38 s [sydtest-mutation-example-gen] Phase: updateAutotoolsGnuConfigScriptsPhase
  435. 18.39 s [sydtest-mutation-example-gen] Phase: configurePhase
  436. 18.39 s [sydtest-mutation-example-gen] configureFlags: --verbose --prefix=/nix/store/rs2c62009aas9nlf4rxkpmpqsa5ivg8c-sydtest-mutation-example-gen-0.0.0.0 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --with-gcc=gcc --package-db=/build/tmp.yoTXNYB684/package.conf.d --ghc-option=-j16 --ghc-option=+RTS --ghc-option=-A64M --ghc-option=-RTS --enable-library-profiling --profiling-detail=exported-functions --disable-profiling --enable-shared --disable-coverage --disable-static --disable-executable-dynamic --enable-tests --enable-benchmarks --enable-library-vanilla --disable-library-for-ghci --enable-split-sections --enable-library-stripping --enable-executable-stripping --ghc-options=-O2 --ghc-options=-Wall --ghc-options=-Wincomplete-uni-patterns --ghc-options=-Wincomplete-record-updates --ghc-options=-Wpartial-fields --ghc-options=-Widentities --ghc-options=-Wredundant-constraints --ghc-options=-Wcpp-undef --ghc-options=-Wunused-packages --ghc-options=-Werror --ghc-options=-Wno-deprecations --disable-optimization --ghc-option=-j1 --ghc-option=+RTS --ghc-option=-A32M --ghc-option=-M16g --ghc-option=-RTS --extra-lib-dirs=/nix/store/ffyzkisqs4vc4mg28bwwlyqjf8i9ph6b-ncurses-6.5/lib --extra-lib-dirs=/nix/store/n28qgdj8c1q41kf7n4y1jxa6ckp85m3c-libffi-3.5.2/lib --extra-lib-dirs=/nix/store/1b6h99dw7bk4wbn77kbalih42zbc67m1-elfutils-0.194/lib --extra-lib-dirs=/nix/store/hi0ar880110k6jsmmili7dh1gq3cg2a9-gmp-with-cxx-6.3.0/lib --extra-lib-dirs=/nix/store/g09cflpnp4g80q56sj9dng1qzv4v4ybc-numactl-2.0.18/lib --extra-lib-dirs=/nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/lib
  437. 18.39 s [sydtest-mutation-example-gen] Phase: configurePhase
  438. 18.40 s [sydtest-mutation-example-gen] Using Parsec parser
  439. 18.40 s [sydtest-mutation-example-gen] Configuring sydtest-mutation-example-gen-0.0.0.0...
  440. 18.40 s [sydtest-mutation-example-gen] configureFlags: --verbose --prefix=/nix/store/1prdnk87rkppdrzj2vfx735clnm60jfd-sydtest-mutation-example-gen-0.0.0.0 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --with-gcc=gcc --package-db=/build/tmp.4m8eZOx9Y9/package.conf.d --ghc-option=-j16 --ghc-option=+RTS --ghc-option=-A64M --ghc-option=-RTS --enable-library-profiling --profiling-detail=exported-functions --disable-profiling --enable-shared --disable-coverage --disable-static --disable-executable-dynamic --enable-tests --enable-benchmarks --enable-library-vanilla --disable-library-for-ghci --enable-split-sections --enable-library-stripping --enable-executable-stripping --ghc-options=-O2 --ghc-options=-Wall --ghc-options=-Wincomplete-uni-patterns --ghc-options=-Wincomplete-record-updates --ghc-options=-Wpartial-fields --ghc-options=-Widentities --ghc-options=-Wredundant-constraints --ghc-options=-Wcpp-undef --ghc-options=-Wunused-packages --ghc-options=-Werror --ghc-options=-Wno-deprecations --disable-optimization --ghc-option=-j1 --ghc-option=+RTS --ghc-option=-A32M --ghc-option=-M16g --ghc-option=-RTS --extra-lib-dirs=/nix/store/ffyzkisqs4vc4mg28bwwlyqjf8i9ph6b-ncurses-6.5/lib --extra-lib-dirs=/nix/store/n28qgdj8c1q41kf7n4y1jxa6ckp85m3c-libffi-3.5.2/lib --extra-lib-dirs=/nix/store/1b6h99dw7bk4wbn77kbalih42zbc67m1-elfutils-0.194/lib --extra-lib-dirs=/nix/store/hi0ar880110k6jsmmili7dh1gq3cg2a9-gmp-with-cxx-6.3.0/lib --extra-lib-dirs=/nix/store/g09cflpnp4g80q56sj9dng1qzv4v4ybc-numactl-2.0.18/lib --extra-lib-dirs=/nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/lib
  441. 18.40 s [sydtest-mutation-example-gen] Using Parsec parser
  442. 18.40 s [sydtest-mutation-example-gen] Configuring sydtest-mutation-example-gen-0.0.0.0...
  443. 19.11 s [sydtest-mutation-example-gen] Dependency QuickCheck: using QuickCheck-2.15.0.1
  444. 19.11 s [sydtest-mutation-example-gen] Dependency base >=4.7 && <5: using base-4.20.2.0
  445. 19.11 s [sydtest-mutation-example-gen] Dependency QuickCheck: using QuickCheck-2.15.0.1
  446. 19.11 s [sydtest-mutation-example-gen] Dependency base >=4.7 && <5: using base-4.20.2.0
  447. 19.11 s [sydtest-mutation-example-gen] Dependency sydtest: using sydtest-0.23.0.2
  448. 19.11 s [sydtest-mutation-example-gen] Dependency sydtest-mutation-example: using sydtest-mutation-example-0.0.0.0
  449. 19.11 s [sydtest-mutation-example-gen] Dependency sydtest-mutation-example-gen: using
  450. 19.11 s [sydtest-mutation-example-gen] sydtest-mutation-example-gen-0.0.0.0
  451. 19.11 s [sydtest-mutation-example-gen] Source component graph:
  452. 19.11 s [sydtest-mutation-example-gen] component lib
  453. 19.11 s [sydtest-mutation-example-gen] component test:sydtest-mutation-example-gen-test dependency lib
  454. 19.11 s [sydtest-mutation-example-gen] Configured component graph:
  455. 19.11 s [sydtest-mutation-example-gen] component sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  456. 19.11 s [sydtest-mutation-example-gen] include QuickCheck-2.15.0.1-8fVC1qSJKj9H9pvMjJXUwU
  457. 19.11 s [sydtest-mutation-example-gen] include base-4.20.2.0-64da
  458. 19.11 s [sydtest-mutation-example-gen] component sydtest-mutation-example-gen-0.0.0.0-B8LMoSk4IJL2JKKau1M348-sydtest-mutation-example-gen-test
  459. 19.11 s [sydtest-mutation-example-gen] include QuickCheck-2.15.0.1-8fVC1qSJKj9H9pvMjJXUwU
  460. 19.11 s [sydtest-mutation-example-gen] include base-4.20.2.0-64da
  461. 19.11 s [sydtest-mutation-example-gen] include sydtest-0.23.0.2-RzVaEpJISaERaSrCHYFLw
  462. 19.11 s [sydtest-mutation-example-gen] include sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA
  463. 19.11 s [sydtest-mutation-example-gen] include sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  464. 19.11 s [sydtest-mutation-example-gen] Linked component graph:
  465. 19.11 s [sydtest-mutation-example-gen] unit sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  466. 19.11 s [sydtest-mutation-example-gen] include QuickCheck-2.15.0.1-8fVC1qSJKj9H9pvMjJXUwU
  467. 19.11 s [sydtest-mutation-example-gen] include base-4.20.2.0-64da
  468. 19.11 s [sydtest-mutation-example-gen] Example.Gen=sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ:Example.Gen
  469. 19.11 s [sydtest-mutation-example-gen] unit sydtest-mutation-example-gen-0.0.0.0-B8LMoSk4IJL2JKKau1M348-sydtest-mutation-example-gen-test
  470. 19.11 s [sydtest-mutation-example-gen] include QuickCheck-2.15.0.1-8fVC1qSJKj9H9pvMjJXUwU
  471. 19.11 s [sydtest-mutation-example-gen] include base-4.20.2.0-64da
  472. 19.11 s [sydtest-mutation-example-gen] include sydtest-0.23.0.2-RzVaEpJISaERaSrCHYFLw
  473. 19.11 s [sydtest-mutation-example-gen] include sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA
  474. 19.11 s [sydtest-mutation-example-gen] include sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  475. 19.11 s [sydtest-mutation-example-gen] Ready component graph:
  476. 19.11 s [sydtest-mutation-example-gen] definite sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  477. 19.11 s [sydtest-mutation-example-gen] depends QuickCheck-2.15.0.1-8fVC1qSJKj9H9pvMjJXUwU
  478. 19.11 s [sydtest-mutation-example-gen] depends base-4.20.2.0-64da
  479. 19.11 s [sydtest-mutation-example-gen] definite sydtest-mutation-example-gen-0.0.0.0-B8LMoSk4IJL2JKKau1M348-sydtest-mutation-example-gen-test
  480. 19.11 s [sydtest-mutation-example-gen] depends QuickCheck-2.15.0.1-8fVC1qSJKj9H9pvMjJXUwU
  481. 19.12 s [sydtest-mutation-example-gen] depends base-4.20.2.0-64da
  482. 19.12 s [sydtest-mutation-example-gen] depends sydtest-0.23.0.2-RzVaEpJISaERaSrCHYFLw
  483. 19.12 s [sydtest-mutation-example-gen] depends sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA
  484. 19.12 s [sydtest-mutation-example-gen] depends sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  485. 19.12 s [sydtest-mutation-example-gen] Using Cabal-3.12.1.0 compiled by ghc-9.10
  486. 19.12 s [sydtest-mutation-example-gen] Using compiler: ghc-9.10.3
  487. 19.12 s [sydtest-mutation-example-gen] Using install prefix:
  488. 19.12 s [sydtest-mutation-example-gen] /nix/store/rs2c62009aas9nlf4rxkpmpqsa5ivg8c-sydtest-mutation-example-gen-0.0.0.0
  489. 19.12 s [sydtest-mutation-example-gen] Executables installed in:
  490. 19.12 s [sydtest-mutation-example-gen] /nix/store/rs2c62009aas9nlf4rxkpmpqsa5ivg8c-sydtest-mutation-example-gen-0.0.0.0/bin
  491. 19.12 s [sydtest-mutation-example-gen] Libraries installed in:
  492. 19.12 s [sydtest-mutation-example-gen] /nix/store/rs2c62009aas9nlf4rxkpmpqsa5ivg8c-sydtest-mutation-example-gen-0.0.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  493. 19.12 s [sydtest-mutation-example-gen] Dynamic Libraries installed in:
  494. 19.12 s [sydtest-mutation-example-gen] /nix/store/rs2c62009aas9nlf4rxkpmpqsa5ivg8c-sydtest-mutation-example-gen-0.0.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6
  495. 19.12 s [sydtest-mutation-example-gen] Private executables installed in:
  496. 19.12 s [sydtest-mutation-example-gen] /nix/store/rs2c62009aas9nlf4rxkpmpqsa5ivg8c-sydtest-mutation-example-gen-0.0.0.0/libexec/x86_64-linux-ghc-9.10.3-05f6/sydtest-mutation-example-gen-0.0.0.0
  497. 19.12 s [sydtest-mutation-example-gen] Data files installed in:
  498. 19.12 s [sydtest-mutation-example-gen] /nix/store/rs2c62009aas9nlf4rxkpmpqsa5ivg8c-sydtest-mutation-example-gen-0.0.0.0/share/x86_64-linux-ghc-9.10.3-05f6/sydtest-mutation-example-gen-0.0.0.0
  499. 19.12 s [sydtest-mutation-example-gen] Documentation installed in:
  500. 19.12 s [sydtest-mutation-example-gen] /nix/store/rs2c62009aas9nlf4rxkpmpqsa5ivg8c-sydtest-mutation-example-gen-0.0.0.0/share/doc/x86_64-linux-ghc-9.10.3-05f6/sydtest-mutation-example-gen-0.0.0.0
  501. 19.12 s [sydtest-mutation-example-gen] Configuration files installed in:
  502. 19.12 s [sydtest-mutation-example-gen] /nix/store/rs2c62009aas9nlf4rxkpmpqsa5ivg8c-sydtest-mutation-example-gen-0.0.0.0/etc
  503. 19.12 s [sydtest-mutation-example-gen] No alex found
  504. 19.12 s [sydtest-mutation-example-gen] Using ar found on system at:
  505. 19.12 s [sydtest-mutation-example-gen] /nix/store/iz5lckcsg66r223si2gck7csk2hihj0m-binutils-wrapper-2.44/bin/ar
  506. 19.12 s [sydtest-mutation-example-gen] No c2hs found
  507. 19.12 s [sydtest-mutation-example-gen] No cpphs found
  508. 19.12 s [sydtest-mutation-example-gen] No doctest found
  509. 19.12 s [sydtest-mutation-example-gen] Using gcc version 14.3.0 given by user at:
  510. 19.12 s [sydtest-mutation-example-gen] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/gcc
  511. 19.12 s [sydtest-mutation-example-gen] Using ghc version 9.10.3 found on system at:
  512. 19.12 s [sydtest-mutation-example-gen] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/ghc
  513. 19.12 s [sydtest-mutation-example-gen] Using ghc-pkg version 9.10.3 found on system at:
  514. 19.12 s [sydtest-mutation-example-gen] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/ghc-pkg-9.10.3
  515. 19.12 s [sydtest-mutation-example-gen] No ghcjs found
  516. 19.12 s [sydtest-mutation-example-gen] No ghcjs-pkg found
  517. 19.12 s [sydtest-mutation-example-gen] No greencard found
  518. 19.12 s [sydtest-mutation-example-gen] Using haddock version 2.31.1 found on system at:
  519. 19.12 s [sydtest-mutation-example-gen] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/haddock-ghc-9.10.3
  520. 19.12 s [sydtest-mutation-example-gen] No happy found
  521. 19.12 s [sydtest-mutation-example-gen] Using haskell-suite found on system at: haskell-suite-dummy-location
  522. 19.12 s [sydtest-mutation-example-gen] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
  523. 19.12 s [sydtest-mutation-example-gen] No hmake found
  524. 19.12 s [sydtest-mutation-example-gen] Using hpc version 0.69 found on system at:
  525. 19.12 s [sydtest-mutation-example-gen] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/hpc-ghc-9.10.3
  526. 19.12 s [sydtest-mutation-example-gen] Using hsc2hs version 0.68.10 found on system at:
  527. 19.12 s [sydtest-mutation-example-gen] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/hsc2hs-ghc-9.10.3
  528. 19.12 s [sydtest-mutation-example-gen] Using hscolour version 1.25 found on system at:
  529. 19.12 s [sydtest-mutation-example-gen] /nix/store/f755skyzf4jvfx3crwq9mmh3x4lsaz8i-hscolour-1.25/bin/HsColour
  530. 19.12 s [sydtest-mutation-example-gen] No jhc found
  531. 19.12 s [sydtest-mutation-example-gen] Using ld found on system at:
  532. 19.12 s [sydtest-mutation-example-gen] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/ld
  533. 19.12 s [sydtest-mutation-example-gen] No pkg-config found
  534. 19.12 s [sydtest-mutation-example-gen] Using runghc version 9.10.3 found on system at:
  535. 19.12 s [sydtest-mutation-example-gen] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/runghc-9.10.3
  536. 19.12 s [sydtest-mutation-example-gen] Using strip version 2.44 found on system at:
  537. 19.12 s [sydtest-mutation-example-gen] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/strip
  538. 19.12 s [sydtest-mutation-example-gen] Using tar found on system at:
  539. 19.12 s [sydtest-mutation-example-gen] /nix/store/xl6pd2spjajwcpq09fnmnjv5psqmlmma-gnutar-1.35/bin/tar
  540. 19.12 s [sydtest-mutation-example-gen] No uhc found
  541. 19.17 s [sydtest-mutation-example-gen] Dependency QuickCheck: using QuickCheck-2.15.0.1
  542. 19.17 s [sydtest-mutation-example-gen] Dependency base >=4.7 && <5: using base-4.20.2.0
  543. 19.17 s [sydtest-mutation-example-gen] Dependency QuickCheck: using QuickCheck-2.15.0.1
  544. 19.17 s [sydtest-mutation-example-gen] Dependency base >=4.7 && <5: using base-4.20.2.0
  545. 19.17 s [sydtest-mutation-example-gen] Dependency sydtest: using sydtest-0.23.0.2
  546. 19.17 s [sydtest-mutation-example-gen] Dependency sydtest-mutation-example: using sydtest-mutation-example-0.0.0.0
  547. 19.17 s [sydtest-mutation-example-gen] Dependency sydtest-mutation-example-gen: using
  548. 19.17 s [sydtest-mutation-example-gen] sydtest-mutation-example-gen-0.0.0.0
  549. 19.17 s [sydtest-mutation-example-gen] Source component graph:
  550. 19.17 s [sydtest-mutation-example-gen] component lib
  551. 19.17 s [sydtest-mutation-example-gen] component test:sydtest-mutation-example-gen-test dependency lib
  552. 19.17 s [sydtest-mutation-example-gen] Configured component graph:
  553. 19.17 s [sydtest-mutation-example-gen] component sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  554. 19.17 s [sydtest-mutation-example-gen] include QuickCheck-2.15.0.1-8fVC1qSJKj9H9pvMjJXUwU
  555. 19.17 s [sydtest-mutation-example-gen] include base-4.20.2.0-64da
  556. 19.17 s [sydtest-mutation-example-gen] component sydtest-mutation-example-gen-0.0.0.0-B8LMoSk4IJL2JKKau1M348-sydtest-mutation-example-gen-test
  557. 19.17 s [sydtest-mutation-example-gen] include QuickCheck-2.15.0.1-8fVC1qSJKj9H9pvMjJXUwU
  558. 19.17 s [sydtest-mutation-example-gen] include base-4.20.2.0-64da
  559. 19.17 s [sydtest-mutation-example-gen] include sydtest-0.23.0.2-RzVaEpJISaERaSrCHYFLw
  560. 19.17 s [sydtest-mutation-example-gen] include sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA
  561. 19.17 s [sydtest-mutation-example-gen] include sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  562. 19.17 s [sydtest-mutation-example-gen] Linked component graph:
  563. 19.17 s [sydtest-mutation-example-gen] unit sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  564. 19.17 s [sydtest-mutation-example-gen] include QuickCheck-2.15.0.1-8fVC1qSJKj9H9pvMjJXUwU
  565. 19.17 s [sydtest-mutation-example-gen] include base-4.20.2.0-64da
  566. 19.17 s [sydtest-mutation-example-gen] Example.Gen=sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ:Example.Gen
  567. 19.17 s [sydtest-mutation-example-gen] unit sydtest-mutation-example-gen-0.0.0.0-B8LMoSk4IJL2JKKau1M348-sydtest-mutation-example-gen-test
  568. 19.17 s [sydtest-mutation-example-gen] include QuickCheck-2.15.0.1-8fVC1qSJKj9H9pvMjJXUwU
  569. 19.17 s [sydtest-mutation-example-gen] include base-4.20.2.0-64da
  570. 19.17 s [sydtest-mutation-example-gen] include sydtest-0.23.0.2-RzVaEpJISaERaSrCHYFLw
  571. 19.17 s [sydtest-mutation-example-gen] include sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA
  572. 19.17 s [sydtest-mutation-example-gen] include sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  573. 19.17 s [sydtest-mutation-example-gen] Ready component graph:
  574. 19.17 s [sydtest-mutation-example-gen] definite sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  575. 19.17 s [sydtest-mutation-example-gen] depends QuickCheck-2.15.0.1-8fVC1qSJKj9H9pvMjJXUwU
  576. 19.17 s [sydtest-mutation-example-gen] depends base-4.20.2.0-64da
  577. 19.17 s [sydtest-mutation-example-gen] definite sydtest-mutation-example-gen-0.0.0.0-B8LMoSk4IJL2JKKau1M348-sydtest-mutation-example-gen-test
  578. 19.17 s [sydtest-mutation-example-gen] depends QuickCheck-2.15.0.1-8fVC1qSJKj9H9pvMjJXUwU
  579. 19.17 s [sydtest-mutation-example-gen] depends base-4.20.2.0-64da
  580. 19.17 s [sydtest-mutation-example-gen] depends sydtest-0.23.0.2-RzVaEpJISaERaSrCHYFLw
  581. 19.17 s [sydtest-mutation-example-gen] depends sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA
  582. 19.17 s [sydtest-mutation-example-gen] depends sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  583. 19.17 s [sydtest-mutation-example-gen] Using Cabal-3.12.1.0 compiled by ghc-9.10
  584. 19.17 s [sydtest-mutation-example-gen] Using compiler: ghc-9.10.3
  585. 19.17 s [sydtest-mutation-example-gen] Using install prefix:
  586. 19.17 s [sydtest-mutation-example-gen] /nix/store/1prdnk87rkppdrzj2vfx735clnm60jfd-sydtest-mutation-example-gen-0.0.0.0
  587. 19.17 s [sydtest-mutation-example-gen] Executables installed in:
  588. 19.17 s [sydtest-mutation-example-gen] /nix/store/1prdnk87rkppdrzj2vfx735clnm60jfd-sydtest-mutation-example-gen-0.0.0.0/bin
  589. 19.17 s [sydtest-mutation-example-gen] Libraries installed in:
  590. 19.17 s [sydtest-mutation-example-gen] /nix/store/1prdnk87rkppdrzj2vfx735clnm60jfd-sydtest-mutation-example-gen-0.0.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  591. 19.17 s [sydtest-mutation-example-gen] Dynamic Libraries installed in:
  592. 19.17 s [sydtest-mutation-example-gen] /nix/store/1prdnk87rkppdrzj2vfx735clnm60jfd-sydtest-mutation-example-gen-0.0.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6
  593. 19.17 s [sydtest-mutation-example-gen] Private executables installed in:
  594. 19.17 s [sydtest-mutation-example-gen] /nix/store/1prdnk87rkppdrzj2vfx735clnm60jfd-sydtest-mutation-example-gen-0.0.0.0/libexec/x86_64-linux-ghc-9.10.3-05f6/sydtest-mutation-example-gen-0.0.0.0
  595. 19.17 s [sydtest-mutation-example-gen] Data files installed in:
  596. 19.17 s [sydtest-mutation-example-gen] /nix/store/1prdnk87rkppdrzj2vfx735clnm60jfd-sydtest-mutation-example-gen-0.0.0.0/share/x86_64-linux-ghc-9.10.3-05f6/sydtest-mutation-example-gen-0.0.0.0
  597. 19.17 s [sydtest-mutation-example-gen] Documentation installed in:
  598. 19.17 s [sydtest-mutation-example-gen] /nix/store/1prdnk87rkppdrzj2vfx735clnm60jfd-sydtest-mutation-example-gen-0.0.0.0/share/doc/x86_64-linux-ghc-9.10.3-05f6/sydtest-mutation-example-gen-0.0.0.0
  599. 19.17 s [sydtest-mutation-example-gen] Configuration files installed in:
  600. 19.17 s [sydtest-mutation-example-gen] /nix/store/1prdnk87rkppdrzj2vfx735clnm60jfd-sydtest-mutation-example-gen-0.0.0.0/etc
  601. 19.17 s [sydtest-mutation-example-gen] No alex found
  602. 19.17 s [sydtest-mutation-example-gen] Using ar found on system at:
  603. 19.17 s [sydtest-mutation-example-gen] /nix/store/iz5lckcsg66r223si2gck7csk2hihj0m-binutils-wrapper-2.44/bin/ar
  604. 19.17 s [sydtest-mutation-example-gen] No c2hs found
  605. 19.17 s [sydtest-mutation-example-gen] No cpphs found
  606. 19.17 s [sydtest-mutation-example-gen] No doctest found
  607. 19.17 s [sydtest-mutation-example-gen] Using gcc version 14.3.0 given by user at:
  608. 19.17 s [sydtest-mutation-example-gen] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/gcc
  609. 19.17 s [sydtest-mutation-example-gen] Using ghc version 9.10.3 found on system at:
  610. 19.17 s [sydtest-mutation-example-gen] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/ghc
  611. 19.17 s [sydtest-mutation-example-gen] Using ghc-pkg version 9.10.3 found on system at:
  612. 19.17 s [sydtest-mutation-example-gen] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/ghc-pkg-9.10.3
  613. 19.17 s [sydtest-mutation-example-gen] No ghcjs found
  614. 19.17 s [sydtest-mutation-example-gen] No ghcjs-pkg found
  615. 19.17 s [sydtest-mutation-example-gen] No greencard found
  616. 19.17 s [sydtest-mutation-example-gen] Using haddock version 2.31.1 found on system at:
  617. 19.17 s [sydtest-mutation-example-gen] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/haddock-ghc-9.10.3
  618. 19.17 s [sydtest-mutation-example-gen] No happy found
  619. 19.17 s [sydtest-mutation-example-gen] Using haskell-suite found on system at: haskell-suite-dummy-location
  620. 19.17 s [sydtest-mutation-example-gen] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
  621. 19.17 s [sydtest-mutation-example-gen] No hmake found
  622. 19.17 s [sydtest-mutation-example-gen] Using hpc version 0.69 found on system at:
  623. 19.17 s [sydtest-mutation-example-gen] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/hpc-ghc-9.10.3
  624. 19.17 s [sydtest-mutation-example-gen] Using hsc2hs version 0.68.10 found on system at:
  625. 19.17 s [sydtest-mutation-example-gen] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/hsc2hs-ghc-9.10.3
  626. 19.17 s [sydtest-mutation-example-gen] Using hscolour version 1.25 found on system at:
  627. 19.17 s [sydtest-mutation-example-gen] /nix/store/f755skyzf4jvfx3crwq9mmh3x4lsaz8i-hscolour-1.25/bin/HsColour
  628. 19.17 s [sydtest-mutation-example-gen] No jhc found
  629. 19.17 s [sydtest-mutation-example-gen] Using ld found on system at:
  630. 19.17 s [sydtest-mutation-example-gen] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/ld
  631. 19.17 s [sydtest-mutation-example-gen] No pkg-config found
  632. 19.17 s [sydtest-mutation-example-gen] Using runghc version 9.10.3 found on system at:
  633. 19.17 s [sydtest-mutation-example-gen] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/runghc-9.10.3
  634. 19.17 s [sydtest-mutation-example-gen] Using strip version 2.44 found on system at:
  635. 19.17 s [sydtest-mutation-example-gen] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/strip
  636. 19.17 s [sydtest-mutation-example-gen] Using tar found on system at:
  637. 19.17 s [sydtest-mutation-example-gen] /nix/store/xl6pd2spjajwcpq09fnmnjv5psqmlmma-gnutar-1.35/bin/tar
  638. 19.17 s [sydtest-mutation-example-gen] No uhc found
  639. 19.53 s [sydtest-mutation-example-gen] Phase: buildPhase
  640. 19.53 s [sydtest-mutation-example-gen] mutation-nix: setting MUTATION_MANIFEST_DIR=/nix/store/jdzypd24s04h7w33pjd5xsn3vj2s74ha-sydtest-mutation-example-gen-0.0.0.0-manifest
  641. 19.57 s [sydtest-mutation-example-gen] Phase: buildPhase
  642. 19.58 s [sydtest-mutation-example-gen] mutation-nix: setting MUTATION_MANIFEST_DIR=/nix/store/4pvqd2g62cdwjc64irsam3dffgl98x90-sydtest-mutation-example-gen-0.0.0.0-manifest
  643. 19.61 s [sydtest-mutation-example-gen] Preprocessing library for sydtest-mutation-example-gen-0.0.0.0...
  644. 19.61 s [sydtest-mutation-example-gen] Building library for sydtest-mutation-example-gen-0.0.0.0...
  645. 19.65 s [sydtest-mutation-example-gen] Preprocessing library for sydtest-mutation-example-gen-0.0.0.0...
  646. 19.65 s [sydtest-mutation-example-gen] Building library for sydtest-mutation-example-gen-0.0.0.0...
  647. 19.77 s [sydtest-mutation-example-gen] [1 of 2] Compiling Example.Gen ( src/Example/Gen.hs, dist/build/Example/Gen.o, dist/build/Example/Gen.dyn_o )
  648. 19.80 s [sydtest-mutation-example-gen] mutation: instrumenting Example.Gen
  649. 19.80 s [sydtest-mutation-example-gen] added 0 mutations
  650. 19.81 s [sydtest-mutation-example-gen] [1 of 2] Compiling Example.Gen ( src/Example/Gen.hs, dist/build/Example/Gen.o, dist/build/Example/Gen.dyn_o )
  651. 19.85 s [sydtest-mutation-example-gen] mutation: instrumenting Example.Gen
  652. 19.85 s [sydtest-mutation-example-gen] added 0 mutations
  653. 20.31 s [sydtest-mutation-example-gen] [2 of 2] Compiling Paths_sydtest_mutation_example_gen ( dist/build/autogen/Paths_sydtest_mutation_example_gen.hs, dist/build/Paths_sydtest_mutation_example_gen.o, dist/build/Paths_sydtest_mutation_example_gen.dyn_o )
  654. 20.40 s [sydtest-mutation-example-gen] [2 of 2] Compiling Paths_sydtest_mutation_example_gen ( dist/build/autogen/Paths_sydtest_mutation_example_gen.hs, dist/build/Paths_sydtest_mutation_example_gen.o, dist/build/Paths_sydtest_mutation_example_gen.dyn_o )
  655. 21.34 s [sydtest-mutation-example-gen] [1 of 2] Compiling Example.Gen ( src/Example/Gen.hs, dist/build/Example/Gen.p_o )
  656. 21.39 s [sydtest-mutation-example-gen] [1 of 2] Compiling Example.Gen ( src/Example/Gen.hs, dist/build/Example/Gen.p_o )
  657. 21.46 s [sydtest-mutation-example-gen] mutation: instrumenting Example.Gen
  658. 21.46 s [sydtest-mutation-example-gen] added 0 mutations
  659. 21.48 s [sydtest-mutation-example-gen] mutation: instrumenting Example.Gen
  660. 21.48 s [sydtest-mutation-example-gen] added 0 mutations
  661. 22.27 s [sydtest-mutation-example-gen] [2 of 2] Compiling Paths_sydtest_mutation_example_gen ( dist/build/autogen/Paths_sydtest_mutation_example_gen.hs, dist/build/Paths_sydtest_mutation_example_gen.p_o )
  662. 22.34 s [sydtest-mutation-example-gen] [2 of 2] Compiling Paths_sydtest_mutation_example_gen ( dist/build/autogen/Paths_sydtest_mutation_example_gen.hs, dist/build/Paths_sydtest_mutation_example_gen.p_o )
  663. 23.27 s [sydtest-mutation-example-gen] Warning: ignoring unrecognised input `dist/build/Example/Gen.dyn_o'
  664. 23.27 s [sydtest-mutation-example-gen] Warning: ignoring unrecognised input `dist/build/Paths_sydtest_mutation_example_gen.dyn_o'
  665. 23.31 s [sydtest-mutation-example-gen] Warning: ignoring unrecognised input `dist/build/Example/Gen.dyn_o'
  666. 23.31 s [sydtest-mutation-example-gen] Warning: ignoring unrecognised input `dist/build/Paths_sydtest_mutation_example_gen.dyn_o'
  667. 25.18 s [sydtest-mutation-example-gen] Preprocessing test suite 'sydtest-mutation-example-gen-test' for sydtest-mutation-example-gen-0.0.0.0...
  668. 25.18 s [sydtest-mutation-example-gen] Building test suite 'sydtest-mutation-example-gen-test' for sydtest-mutation-example-gen-0.0.0.0...
  669. 25.19 s [sydtest-mutation-example-gen] Preprocessing test suite 'sydtest-mutation-example-gen-test' for sydtest-mutation-example-gen-0.0.0.0...
  670. 25.19 s [sydtest-mutation-example-gen] Building test suite 'sydtest-mutation-example-gen-test' for sydtest-mutation-example-gen-0.0.0.0...
  671. 25.68 s [sydtest-mutation-example-gen] [1 of 7] Compiling Example.BoolLibSpec ( test/Example/BoolLibSpec.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Example/BoolLibSpec.o )
  672. 25.74 s [sydtest-mutation-example-gen] [1 of 7] Compiling Example.BoolLibSpec ( test/Example/BoolLibSpec.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Example/BoolLibSpec.o )
  673. 25.84 s [sydtest-mutation-example-gen] mutation: instrumenting Example.BoolLibSpec
  674. 25.84 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:10:32-36
  675. 25.85 s [sydtest-mutation-example-gen] @@ -7,7 +7,7 @@
  676. 25.85 s [sydtest-mutation-example-gen] spec = do
  677. 25.85 s [sydtest-mutation-example-gen] describe "wrapTrue" $
  678. 25.85 s [sydtest-mutation-example-gen] it "is Just True" $
  679. 25.85 s [sydtest-mutation-example-gen] - wrapTrue `shouldBe` Just True
  680. 25.85 s [sydtest-mutation-example-gen] + wrapTrue `shouldBe` Just False
  681. 25.85 s [sydtest-mutation-example-gen] describe "wrapFalse" $
  682. 25.85 s [sydtest-mutation-example-gen] it "is Just False" $
  683. 25.85 s [sydtest-mutation-example-gen] wrapFalse `shouldBe` Just False
  684. 25.85 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:13:33-38
  685. 25.85 s [sydtest-mutation-example-gen] @@ -10,7 +10,7 @@
  686. 25.85 s [sydtest-mutation-example-gen] wrapTrue `shouldBe` Just True
  687. 25.85 s [sydtest-mutation-example-gen] describe "wrapFalse" $
  688. 25.85 s [sydtest-mutation-example-gen] it "is Just False" $
  689. 25.85 s [sydtest-mutation-example-gen] - wrapFalse `shouldBe` Just False
  690. 25.85 s [sydtest-mutation-example-gen] + wrapFalse `shouldBe` Just True
  691. 25.85 s [sydtest-mutation-example-gen] describe "negateWrapped" $ do
  692. 25.85 s [sydtest-mutation-example-gen] it "negates Just True to Just False" $
  693. 25.85 s [sydtest-mutation-example-gen] negateWrapped (Just True) `shouldBe` Just False
  694. 25.85 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:16:27-31
  695. 25.85 s [sydtest-mutation-example-gen] @@ -13,7 +13,7 @@
  696. 25.85 s [sydtest-mutation-example-gen] wrapFalse `shouldBe` Just False
  697. 25.85 s [sydtest-mutation-example-gen] describe "negateWrapped" $ do
  698. 25.85 s [sydtest-mutation-example-gen] it "negates Just True to Just False" $
  699. 25.85 s [sydtest-mutation-example-gen] - negateWrapped (Just True) `shouldBe` Just False
  700. 25.85 s [sydtest-mutation-example-gen] + negateWrapped (Just False) `shouldBe` Just False
  701. 25.85 s [sydtest-mutation-example-gen] it "negates Just False to Just True" $
  702. 25.85 s [sydtest-mutation-example-gen] negateWrapped (Just False) `shouldBe` Just True
  703. 25.85 s [sydtest-mutation-example-gen] it "leaves Nothing as Nothing" $
  704. 25.85 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:16:49-54
  705. 25.85 s [sydtest-mutation-example-gen] @@ -13,7 +13,7 @@
  706. 25.85 s [sydtest-mutation-example-gen] wrapFalse `shouldBe` Just False
  707. 25.85 s [sydtest-mutation-example-gen] describe "negateWrapped" $ do
  708. 25.85 s [sydtest-mutation-example-gen] it "negates Just True to Just False" $
  709. 25.85 s [sydtest-mutation-example-gen] - negateWrapped (Just True) `shouldBe` Just False
  710. 25.85 s [sydtest-mutation-example-gen] + negateWrapped (Just True) `shouldBe` Just True
  711. 25.85 s [sydtest-mutation-example-gen] it "negates Just False to Just True" $
  712. 25.85 s [sydtest-mutation-example-gen] negateWrapped (Just False) `shouldBe` Just True
  713. 25.85 s [sydtest-mutation-example-gen] it "leaves Nothing as Nothing" $
  714. 25.85 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:18:27-32
  715. 25.85 s [sydtest-mutation-example-gen] @@ -15,6 +15,6 @@
  716. 25.85 s [sydtest-mutation-example-gen] it "negates Just True to Just False" $
  717. 25.85 s [sydtest-mutation-example-gen] negateWrapped (Just True) `shouldBe` Just False
  718. 25.85 s [sydtest-mutation-example-gen] it "negates Just False to Just True" $
  719. 25.85 s [sydtest-mutation-example-gen] - negateWrapped (Just False) `shouldBe` Just True
  720. 25.85 s [sydtest-mutation-example-gen] + negateWrapped (Just True) `shouldBe` Just True
  721. 25.85 s [sydtest-mutation-example-gen] it "leaves Nothing as Nothing" $
  722. 25.85 s [sydtest-mutation-example-gen] negateWrapped Nothing `shouldBe` Nothing
  723. 25.85 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:18:50-54
  724. 25.85 s [sydtest-mutation-example-gen] @@ -15,6 +15,6 @@
  725. 25.85 s [sydtest-mutation-example-gen] it "negates Just True to Just False" $
  726. 25.85 s [sydtest-mutation-example-gen] negateWrapped (Just True) `shouldBe` Just False
  727. 25.85 s [sydtest-mutation-example-gen] it "negates Just False to Just True" $
  728. 25.85 s [sydtest-mutation-example-gen] - negateWrapped (Just False) `shouldBe` Just True
  729. 25.85 s [sydtest-mutation-example-gen] + negateWrapped (Just False) `shouldBe` Just False
  730. 25.85 s [sydtest-mutation-example-gen] it "leaves Nothing as Nothing" $
  731. 25.86 s [sydtest-mutation-example-gen] negateWrapped Nothing `shouldBe` Nothing
  732. 25.86 s [sydtest-mutation-example-gen] added 6 mutations
  733. 25.92 s [sydtest-mutation-example-gen] mutation: instrumenting Example.BoolLibSpec
  734. 25.92 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:10:32-36
  735. 25.92 s [sydtest-mutation-example-gen] @@ -7,7 +7,7 @@
  736. 25.92 s [sydtest-mutation-example-gen] spec = do
  737. 25.92 s [sydtest-mutation-example-gen] describe "wrapTrue" $
  738. 25.92 s [sydtest-mutation-example-gen] it "is Just True" $
  739. 25.92 s [sydtest-mutation-example-gen] - wrapTrue `shouldBe` Just True
  740. 25.92 s [sydtest-mutation-example-gen] + wrapTrue `shouldBe` Just False
  741. 25.92 s [sydtest-mutation-example-gen] describe "wrapFalse" $
  742. 25.92 s [sydtest-mutation-example-gen] it "is Just False" $
  743. 25.92 s [sydtest-mutation-example-gen] wrapFalse `shouldBe` Just False
  744. 25.92 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:13:33-38
  745. 25.92 s [sydtest-mutation-example-gen] @@ -10,7 +10,7 @@
  746. 25.92 s [sydtest-mutation-example-gen] wrapTrue `shouldBe` Just True
  747. 25.92 s [sydtest-mutation-example-gen] describe "wrapFalse" $
  748. 25.92 s [sydtest-mutation-example-gen] it "is Just False" $
  749. 25.92 s [sydtest-mutation-example-gen] - wrapFalse `shouldBe` Just False
  750. 25.92 s [sydtest-mutation-example-gen] + wrapFalse `shouldBe` Just True
  751. 25.92 s [sydtest-mutation-example-gen] describe "negateWrapped" $ do
  752. 25.92 s [sydtest-mutation-example-gen] it "negates Just True to Just False" $
  753. 25.92 s [sydtest-mutation-example-gen] negateWrapped (Just True) `shouldBe` Just False
  754. 25.92 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:16:27-31
  755. 25.92 s [sydtest-mutation-example-gen] @@ -13,7 +13,7 @@
  756. 25.92 s [sydtest-mutation-example-gen] wrapFalse `shouldBe` Just False
  757. 25.92 s [sydtest-mutation-example-gen] describe "negateWrapped" $ do
  758. 25.92 s [sydtest-mutation-example-gen] it "negates Just True to Just False" $
  759. 25.92 s [sydtest-mutation-example-gen] - negateWrapped (Just True) `shouldBe` Just False
  760. 25.92 s [sydtest-mutation-example-gen] + negateWrapped (Just False) `shouldBe` Just False
  761. 25.92 s [sydtest-mutation-example-gen] it "negates Just False to Just True" $
  762. 25.92 s [sydtest-mutation-example-gen] negateWrapped (Just False) `shouldBe` Just True
  763. 25.92 s [sydtest-mutation-example-gen] it "leaves Nothing as Nothing" $
  764. 25.92 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:16:49-54
  765. 25.92 s [sydtest-mutation-example-gen] @@ -13,7 +13,7 @@
  766. 25.92 s [sydtest-mutation-example-gen] wrapFalse `shouldBe` Just False
  767. 25.92 s [sydtest-mutation-example-gen] describe "negateWrapped" $ do
  768. 25.92 s [sydtest-mutation-example-gen] it "negates Just True to Just False" $
  769. 25.92 s [sydtest-mutation-example-gen] - negateWrapped (Just True) `shouldBe` Just False
  770. 25.92 s [sydtest-mutation-example-gen] + negateWrapped (Just True) `shouldBe` Just True
  771. 25.92 s [sydtest-mutation-example-gen] it "negates Just False to Just True" $
  772. 25.92 s [sydtest-mutation-example-gen] negateWrapped (Just False) `shouldBe` Just True
  773. 25.92 s [sydtest-mutation-example-gen] it "leaves Nothing as Nothing" $
  774. 25.92 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:18:27-32
  775. 25.92 s [sydtest-mutation-example-gen] @@ -15,6 +15,6 @@
  776. 25.92 s [sydtest-mutation-example-gen] it "negates Just True to Just False" $
  777. 25.92 s [sydtest-mutation-example-gen] negateWrapped (Just True) `shouldBe` Just False
  778. 25.92 s [sydtest-mutation-example-gen] it "negates Just False to Just True" $
  779. 25.92 s [sydtest-mutation-example-gen] - negateWrapped (Just False) `shouldBe` Just True
  780. 25.93 s [sydtest-mutation-example-gen] + negateWrapped (Just True) `shouldBe` Just True
  781. 25.93 s [sydtest-mutation-example-gen] it "leaves Nothing as Nothing" $
  782. 25.93 s [sydtest-mutation-example-gen] negateWrapped Nothing `shouldBe` Nothing
  783. 25.93 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:18:50-54
  784. 25.93 s [sydtest-mutation-example-gen] @@ -15,6 +15,6 @@
  785. 25.93 s [sydtest-mutation-example-gen] it "negates Just True to Just False" $
  786. 25.93 s [sydtest-mutation-example-gen] negateWrapped (Just True) `shouldBe` Just False
  787. 25.93 s [sydtest-mutation-example-gen] it "negates Just False to Just True" $
  788. 25.93 s [sydtest-mutation-example-gen] - negateWrapped (Just False) `shouldBe` Just True
  789. 25.93 s [sydtest-mutation-example-gen] + negateWrapped (Just False) `shouldBe` Just False
  790. 25.93 s [sydtest-mutation-example-gen] it "leaves Nothing as Nothing" $
  791. 25.93 s [sydtest-mutation-example-gen] negateWrapped Nothing `shouldBe` Nothing
  792. 25.93 s [sydtest-mutation-example-gen] added 6 mutations
  793. 26.81 s [sydtest-mutation-example-gen] [2 of 7] Compiling Example.ExceptionLibSpec ( test/Example/ExceptionLibSpec.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Example/ExceptionLibSpec.o )
  794. 26.85 s [sydtest-mutation-example-gen] mutation: instrumenting Example.ExceptionLibSpec
  795. 26.85 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/ExceptionLibSpec.hs:13:47-48
  796. 26.85 s [sydtest-mutation-example-gen] @@ -10,4 +10,4 @@
  797. 26.86 s [sydtest-mutation-example-gen] describe "addOneModuleDisabled" $
  798. 26.86 s [sydtest-mutation-example-gen] it "increments by one" $
  799. 26.86 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  800. 26.86 s [sydtest-mutation-example-gen] - addOneModuleDisabled n `shouldBe` n + 1
  801. 26.86 s [sydtest-mutation-example-gen] + addOneModuleDisabled n `shouldBe` n + 0
  802. 26.86 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/ExceptionLibSpec.hs:13:47-48
  803. 26.86 s [sydtest-mutation-example-gen] @@ -10,4 +10,4 @@
  804. 26.86 s [sydtest-mutation-example-gen] describe "addOneModuleDisabled" $
  805. 26.86 s [sydtest-mutation-example-gen] it "increments by one" $
  806. 26.86 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  807. 26.86 s [sydtest-mutation-example-gen] - addOneModuleDisabled n `shouldBe` n + 1
  808. 26.86 s [sydtest-mutation-example-gen] + addOneModuleDisabled n `shouldBe` n + -1
  809. 26.86 s [sydtest-mutation-example-gen] added 2 mutations
  810. 26.86 s [sydtest-mutation-example-gen] [2 of 7] Compiling Example.ExceptionLibSpec ( test/Example/ExceptionLibSpec.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Example/ExceptionLibSpec.o )
  811. 26.87 s [sydtest-mutation-example-gen] mutation: instrumenting Example.ExceptionLibSpec
  812. 26.87 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/ExceptionLibSpec.hs:13:47-48
  813. 26.87 s [sydtest-mutation-example-gen] @@ -10,4 +10,4 @@
  814. 26.87 s [sydtest-mutation-example-gen] describe "addOneModuleDisabled" $
  815. 26.87 s [sydtest-mutation-example-gen] it "increments by one" $
  816. 26.87 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  817. 26.87 s [sydtest-mutation-example-gen] - addOneModuleDisabled n `shouldBe` n + 1
  818. 26.87 s [sydtest-mutation-example-gen] + addOneModuleDisabled n `shouldBe` n + 0
  819. 26.87 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/ExceptionLibSpec.hs:13:47-48
  820. 26.87 s [sydtest-mutation-example-gen] @@ -10,4 +10,4 @@
  821. 26.87 s [sydtest-mutation-example-gen] describe "addOneModuleDisabled" $
  822. 26.88 s [sydtest-mutation-example-gen] it "increments by one" $
  823. 26.88 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  824. 26.88 s [sydtest-mutation-example-gen] - addOneModuleDisabled n `shouldBe` n + 1
  825. 26.88 s [sydtest-mutation-example-gen] + addOneModuleDisabled n `shouldBe` n + -1
  826. 26.88 s [sydtest-mutation-example-gen] added 2 mutations
  827. 26.94 s [sydtest-mutation-example-gen] [3 of 7] Compiling Example.FunctionExceptionLibSpec ( test/Example/FunctionExceptionLibSpec.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Example/FunctionExceptionLibSpec.o )
  828. 26.94 s [sydtest-mutation-example-gen] mutation: instrumenting Example.FunctionExceptionLibSpec
  829. 26.94 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:13:46-47
  830. 26.95 s [sydtest-mutation-example-gen] @@ -10,7 +10,7 @@
  831. 26.95 s [sydtest-mutation-example-gen] describe "addOneArithDisabled" $
  832. 26.95 s [sydtest-mutation-example-gen] it "increments by one" $
  833. 26.95 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  834. 26.95 s [sydtest-mutation-example-gen] - addOneArithDisabled n `shouldBe` n + 1
  835. 26.95 s [sydtest-mutation-example-gen] + addOneArithDisabled n `shouldBe` n + 0
  836. 26.95 s [sydtest-mutation-example-gen] describe "addOneArithAndIntLitDisabled" $
  837. 26.95 s [sydtest-mutation-example-gen] it "increments by one" $
  838. 26.95 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  839. 26.95 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:13:46-47
  840. 26.95 s [sydtest-mutation-example-gen] @@ -10,7 +10,7 @@
  841. 26.95 s [sydtest-mutation-example-gen] describe "addOneArithDisabled" $
  842. 26.95 s [sydtest-mutation-example-gen] it "increments by one" $
  843. 26.95 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  844. 26.95 s [sydtest-mutation-example-gen] - addOneArithDisabled n `shouldBe` n + 1
  845. 26.95 s [sydtest-mutation-example-gen] + addOneArithDisabled n `shouldBe` n + -1
  846. 26.95 s [sydtest-mutation-example-gen] describe "addOneArithAndIntLitDisabled" $
  847. 26.95 s [sydtest-mutation-example-gen] it "increments by one" $
  848. 26.95 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  849. 26.95 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:17:55-56
  850. 26.95 s [sydtest-mutation-example-gen] @@ -14,7 +14,7 @@
  851. 26.95 s [sydtest-mutation-example-gen] describe "addOneArithAndIntLitDisabled" $
  852. 26.95 s [sydtest-mutation-example-gen] it "increments by one" $
  853. 26.95 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  854. 26.95 s [sydtest-mutation-example-gen] - addOneArithAndIntLitDisabled n `shouldBe` n + 1
  855. 26.95 s [sydtest-mutation-example-gen] + addOneArithAndIntLitDisabled n `shouldBe` n + 0
  856. 26.95 s [sydtest-mutation-example-gen] describe "addOneFunctionDisabled" $
  857. 26.95 s [sydtest-mutation-example-gen] it "increments by one" $
  858. 26.95 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  859. 26.95 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:17:55-56
  860. 26.95 s [sydtest-mutation-example-gen] @@ -14,7 +14,7 @@
  861. 26.95 s [sydtest-mutation-example-gen] describe "addOneArithAndIntLitDisabled" $
  862. 26.95 s [sydtest-mutation-example-gen] it "increments by one" $
  863. 26.95 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  864. 26.95 s [sydtest-mutation-example-gen] - addOneArithAndIntLitDisabled n `shouldBe` n + 1
  865. 26.95 s [sydtest-mutation-example-gen] + addOneArithAndIntLitDisabled n `shouldBe` n + -1
  866. 26.95 s [sydtest-mutation-example-gen] describe "addOneFunctionDisabled" $
  867. 26.95 s [sydtest-mutation-example-gen] it "increments by one" $
  868. 26.95 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  869. 26.96 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:21:49-50
  870. 26.96 s [sydtest-mutation-example-gen] @@ -18,4 +18,4 @@
  871. 26.96 s [sydtest-mutation-example-gen] describe "addOneFunctionDisabled" $
  872. 26.96 s [sydtest-mutation-example-gen] it "increments by one" $
  873. 26.96 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  874. 26.96 s [sydtest-mutation-example-gen] - addOneFunctionDisabled n `shouldBe` n + 1
  875. 26.96 s [sydtest-mutation-example-gen] + addOneFunctionDisabled n `shouldBe` n + 0
  876. 26.96 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:21:49-50
  877. 26.96 s [sydtest-mutation-example-gen] @@ -18,4 +18,4 @@
  878. 26.96 s [sydtest-mutation-example-gen] describe "addOneFunctionDisabled" $
  879. 26.96 s [sydtest-mutation-example-gen] it "increments by one" $
  880. 26.96 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  881. 26.96 s [sydtest-mutation-example-gen] - addOneFunctionDisabled n `shouldBe` n + 1
  882. 26.96 s [sydtest-mutation-example-gen] + addOneFunctionDisabled n `shouldBe` n + -1
  883. 26.96 s [sydtest-mutation-example-gen] added 6 mutations
  884. 27.00 s [sydtest-mutation-example-gen] [3 of 7] Compiling Example.FunctionExceptionLibSpec ( test/Example/FunctionExceptionLibSpec.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Example/FunctionExceptionLibSpec.o )
  885. 27.01 s [sydtest-mutation-example-gen] mutation: instrumenting Example.FunctionExceptionLibSpec
  886. 27.01 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:13:46-47
  887. 27.01 s [sydtest-mutation-example-gen] @@ -10,7 +10,7 @@
  888. 27.01 s [sydtest-mutation-example-gen] describe "addOneArithDisabled" $
  889. 27.01 s [sydtest-mutation-example-gen] it "increments by one" $
  890. 27.01 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  891. 27.01 s [sydtest-mutation-example-gen] - addOneArithDisabled n `shouldBe` n + 1
  892. 27.01 s [sydtest-mutation-example-gen] + addOneArithDisabled n `shouldBe` n + 0
  893. 27.01 s [sydtest-mutation-example-gen] describe "addOneArithAndIntLitDisabled" $
  894. 27.01 s [sydtest-mutation-example-gen] it "increments by one" $
  895. 27.01 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  896. 27.01 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:13:46-47
  897. 27.02 s [sydtest-mutation-example-gen] @@ -10,7 +10,7 @@
  898. 27.02 s [sydtest-mutation-example-gen] describe "addOneArithDisabled" $
  899. 27.02 s [sydtest-mutation-example-gen] it "increments by one" $
  900. 27.02 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  901. 27.02 s [sydtest-mutation-example-gen] - addOneArithDisabled n `shouldBe` n + 1
  902. 27.02 s [sydtest-mutation-example-gen] + addOneArithDisabled n `shouldBe` n + -1
  903. 27.02 s [sydtest-mutation-example-gen] describe "addOneArithAndIntLitDisabled" $
  904. 27.02 s [sydtest-mutation-example-gen] it "increments by one" $
  905. 27.02 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  906. 27.02 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:17:55-56
  907. 27.02 s [sydtest-mutation-example-gen] @@ -14,7 +14,7 @@
  908. 27.02 s [sydtest-mutation-example-gen] describe "addOneArithAndIntLitDisabled" $
  909. 27.02 s [sydtest-mutation-example-gen] it "increments by one" $
  910. 27.02 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  911. 27.02 s [sydtest-mutation-example-gen] - addOneArithAndIntLitDisabled n `shouldBe` n + 1
  912. 27.02 s [sydtest-mutation-example-gen] + addOneArithAndIntLitDisabled n `shouldBe` n + 0
  913. 27.02 s [sydtest-mutation-example-gen] describe "addOneFunctionDisabled" $
  914. 27.02 s [sydtest-mutation-example-gen] it "increments by one" $
  915. 27.02 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  916. 27.02 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:17:55-56
  917. 27.02 s [sydtest-mutation-example-gen] @@ -14,7 +14,7 @@
  918. 27.02 s [sydtest-mutation-example-gen] describe "addOneArithAndIntLitDisabled" $
  919. 27.02 s [sydtest-mutation-example-gen] it "increments by one" $
  920. 27.02 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  921. 27.02 s [sydtest-mutation-example-gen] - addOneArithAndIntLitDisabled n `shouldBe` n + 1
  922. 27.02 s [sydtest-mutation-example-gen] + addOneArithAndIntLitDisabled n `shouldBe` n + -1
  923. 27.02 s [sydtest-mutation-example-gen] describe "addOneFunctionDisabled" $
  924. 27.02 s [sydtest-mutation-example-gen] it "increments by one" $
  925. 27.02 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  926. 27.02 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:21:49-50
  927. 27.02 s [sydtest-mutation-example-gen] @@ -18,4 +18,4 @@
  928. 27.02 s [sydtest-mutation-example-gen] describe "addOneFunctionDisabled" $
  929. 27.02 s [sydtest-mutation-example-gen] it "increments by one" $
  930. 27.02 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  931. 27.02 s [sydtest-mutation-example-gen] - addOneFunctionDisabled n `shouldBe` n + 1
  932. 27.02 s [sydtest-mutation-example-gen] + addOneFunctionDisabled n `shouldBe` n + 0
  933. 27.02 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:21:49-50
  934. 27.02 s [sydtest-mutation-example-gen] @@ -18,4 +18,4 @@
  935. 27.02 s [sydtest-mutation-example-gen] describe "addOneFunctionDisabled" $
  936. 27.02 s [sydtest-mutation-example-gen] it "increments by one" $
  937. 27.02 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  938. 27.02 s [sydtest-mutation-example-gen] - addOneFunctionDisabled n `shouldBe` n + 1
  939. 27.02 s [sydtest-mutation-example-gen] + addOneFunctionDisabled n `shouldBe` n + -1
  940. 27.02 s [sydtest-mutation-example-gen] added 6 mutations
  941. 27.13 s [sydtest-mutation-example-gen] [4 of 7] Compiling Example.LibSpec ( test/Example/LibSpec.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Example/LibSpec.o )
  942. 27.14 s [sydtest-mutation-example-gen] mutation: instrumenting Example.LibSpec
  943. 27.14 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/LibSpec.hs:13:33-34
  944. 27.14 s [sydtest-mutation-example-gen] @@ -10,7 +10,7 @@
  945. 27.14 s [sydtest-mutation-example-gen] describe "addOne" $ do
  946. 27.14 s [sydtest-mutation-example-gen] it "increments by one" $
  947. 27.14 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  948. 27.14 s [sydtest-mutation-example-gen] - addOne n `shouldBe` n + 1
  949. 27.14 s [sydtest-mutation-example-gen] + addOne n `shouldBe` n + 0
  950. 27.14 s [sydtest-mutation-example-gen] it "is greater than its input" $
  951. 27.14 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  952. 27.14 s [sydtest-mutation-example-gen] addOne n > n
  953. 27.14 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/LibSpec.hs:13:33-34
  954. 27.14 s [sydtest-mutation-example-gen] @@ -10,7 +10,7 @@
  955. 27.14 s [sydtest-mutation-example-gen] describe "addOne" $ do
  956. 27.14 s [sydtest-mutation-example-gen] it "increments by one" $
  957. 27.14 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  958. 27.14 s [sydtest-mutation-example-gen] - addOne n `shouldBe` n + 1
  959. 27.14 s [sydtest-mutation-example-gen] + addOne n `shouldBe` n + -1
  960. 27.14 s [sydtest-mutation-example-gen] it "is greater than its input" $
  961. 27.15 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  962. 27.15 s [sydtest-mutation-example-gen] addOne n > n
  963. 27.15 s [sydtest-mutation-example-gen] added mutation ConstBool at test/Example/LibSpec.hs:16:9-21
  964. 27.15 s [sydtest-mutation-example-gen] @@ -13,4 +13,4 @@
  965. 27.15 s [sydtest-mutation-example-gen] addOne n `shouldBe` n + 1
  966. 27.15 s [sydtest-mutation-example-gen] it "is greater than its input" $
  967. 27.15 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  968. 27.15 s [sydtest-mutation-example-gen] - addOne n > n
  969. 27.15 s [sydtest-mutation-example-gen] + True
  970. 27.15 s [sydtest-mutation-example-gen] added mutation ConstBool at test/Example/LibSpec.hs:16:9-21
  971. 27.15 s [sydtest-mutation-example-gen] @@ -13,4 +13,4 @@
  972. 27.15 s [sydtest-mutation-example-gen] addOne n `shouldBe` n + 1
  973. 27.15 s [sydtest-mutation-example-gen] it "is greater than its input" $
  974. 27.15 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  975. 27.15 s [sydtest-mutation-example-gen] - addOne n > n
  976. 27.15 s [sydtest-mutation-example-gen] + False
  977. 27.15 s [sydtest-mutation-example-gen] added mutation Negate at test/Example/LibSpec.hs:16:9-21
  978. 27.15 s [sydtest-mutation-example-gen] @@ -13,4 +13,4 @@
  979. 27.15 s [sydtest-mutation-example-gen] addOne n `shouldBe` n + 1
  980. 27.15 s [sydtest-mutation-example-gen] it "is greater than its input" $
  981. 27.15 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  982. 27.15 s [sydtest-mutation-example-gen] - addOne n > n
  983. 27.15 s [sydtest-mutation-example-gen] + not (addOne n > n)
  984. 27.15 s [sydtest-mutation-example-gen] added 5 mutations
  985. 27.21 s [sydtest-mutation-example-gen] [4 of 7] Compiling Example.LibSpec ( test/Example/LibSpec.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Example/LibSpec.o )
  986. 27.21 s [sydtest-mutation-example-gen] mutation: instrumenting Example.LibSpec
  987. 27.21 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/LibSpec.hs:13:33-34
  988. 27.22 s [sydtest-mutation-example-gen] @@ -10,7 +10,7 @@
  989. 27.22 s [sydtest-mutation-example-gen] describe "addOne" $ do
  990. 27.22 s [sydtest-mutation-example-gen] it "increments by one" $
  991. 27.22 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  992. 27.22 s [sydtest-mutation-example-gen] - addOne n `shouldBe` n + 1
  993. 27.22 s [sydtest-mutation-example-gen] + addOne n `shouldBe` n + 0
  994. 27.22 s [sydtest-mutation-example-gen] it "is greater than its input" $
  995. 27.22 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  996. 27.22 s [sydtest-mutation-example-gen] addOne n > n
  997. 27.22 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/LibSpec.hs:13:33-34
  998. 27.22 s [sydtest-mutation-example-gen] @@ -10,7 +10,7 @@
  999. 27.22 s [sydtest-mutation-example-gen] describe "addOne" $ do
  1000. 27.22 s [sydtest-mutation-example-gen] it "increments by one" $
  1001. 27.22 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1002. 27.22 s [sydtest-mutation-example-gen] - addOne n `shouldBe` n + 1
  1003. 27.22 s [sydtest-mutation-example-gen] + addOne n `shouldBe` n + -1
  1004. 27.22 s [sydtest-mutation-example-gen] it "is greater than its input" $
  1005. 27.22 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1006. 27.22 s [sydtest-mutation-example-gen] addOne n > n
  1007. 27.22 s [sydtest-mutation-example-gen] added mutation ConstBool at test/Example/LibSpec.hs:16:9-21
  1008. 27.22 s [sydtest-mutation-example-gen] @@ -13,4 +13,4 @@
  1009. 27.22 s [sydtest-mutation-example-gen] addOne n `shouldBe` n + 1
  1010. 27.22 s [sydtest-mutation-example-gen] it "is greater than its input" $
  1011. 27.22 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1012. 27.22 s [sydtest-mutation-example-gen] - addOne n > n
  1013. 27.22 s [sydtest-mutation-example-gen] + True
  1014. 27.22 s [sydtest-mutation-example-gen] added mutation ConstBool at test/Example/LibSpec.hs:16:9-21
  1015. 27.22 s [sydtest-mutation-example-gen] @@ -13,4 +13,4 @@
  1016. 27.22 s [sydtest-mutation-example-gen] addOne n `shouldBe` n + 1
  1017. 27.22 s [sydtest-mutation-example-gen] it "is greater than its input" $
  1018. 27.22 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1019. 27.22 s [sydtest-mutation-example-gen] - addOne n > n
  1020. 27.22 s [sydtest-mutation-example-gen] + False
  1021. 27.22 s [sydtest-mutation-example-gen] added mutation Negate at test/Example/LibSpec.hs:16:9-21
  1022. 27.22 s [sydtest-mutation-example-gen] @@ -13,4 +13,4 @@
  1023. 27.22 s [sydtest-mutation-example-gen] addOne n `shouldBe` n + 1
  1024. 27.22 s [sydtest-mutation-example-gen] it "is greater than its input" $
  1025. 27.22 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1026. 27.22 s [sydtest-mutation-example-gen] - addOne n > n
  1027. 27.22 s [sydtest-mutation-example-gen] + not (addOne n > n)
  1028. 27.22 s [sydtest-mutation-example-gen] added 5 mutations
  1029. 27.27 s [sydtest-mutation-example-gen] [5 of 7] Compiling Paths_sydtest_mutation_example_gen ( dist/build/sydtest-mutation-example-gen-test/autogen/Paths_sydtest_mutation_example_gen.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Paths_sydtest_mutation_example_gen.o )
  1030. 27.33 s [sydtest-mutation-example-gen] [5 of 7] Compiling Paths_sydtest_mutation_example_gen ( dist/build/sydtest-mutation-example-gen-test/autogen/Paths_sydtest_mutation_example_gen.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Paths_sydtest_mutation_example_gen.o )
  1031. 27.39 s [sydtest-mutation-example-gen] [6 of 7] Compiling Spec ( test/Spec.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Spec.o )
  1032. 27.39 s [sydtest-mutation-example-gen] mutation: instrumenting Spec
  1033. 27.39 s [sydtest-mutation-example-gen] added 0 mutations
  1034. 27.47 s [sydtest-mutation-example-gen] [7 of 7] Compiling Main ( test/Main.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Main.o )
  1035. 27.48 s [sydtest-mutation-example-gen] [6 of 7] Compiling Spec ( test/Spec.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Spec.o )
  1036. 27.49 s [sydtest-mutation-example-gen] mutation: instrumenting Main
  1037. 27.49 s [sydtest-mutation-example-gen] added 0 mutations
  1038. 27.49 s [sydtest-mutation-example-gen] mutation: instrumenting Spec
  1039. 27.49 s [sydtest-mutation-example-gen] added 0 mutations
  1040. 27.56 s [sydtest-mutation-example-gen] [7 of 7] Compiling Main ( test/Main.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Main.o )
  1041. 27.58 s [sydtest-mutation-example-gen] mutation: instrumenting Main
  1042. 27.58 s [sydtest-mutation-example-gen] added 0 mutations
  1043. 28.27 s [sydtest-mutation-example-gen] [1 of 8] Compiling Example.BoolLibSpec ( test/Example/BoolLibSpec.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Example/BoolLibSpec.o ) [Impure plugin forced recompilation]
  1044. 28.35 s [sydtest-mutation-example-gen] [1 of 8] Compiling Example.BoolLibSpec ( test/Example/BoolLibSpec.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Example/BoolLibSpec.o ) [Impure plugin forced recompilation]
  1045. 28.46 s [sydtest-mutation-example-gen] mutation: instrumenting Example.BoolLibSpec
  1046. 28.46 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:10:32-36
  1047. 28.46 s [sydtest-mutation-example-gen] @@ -7,7 +7,7 @@
  1048. 28.46 s [sydtest-mutation-example-gen] spec = do
  1049. 28.46 s [sydtest-mutation-example-gen] describe "wrapTrue" $
  1050. 28.46 s [sydtest-mutation-example-gen] it "is Just True" $
  1051. 28.47 s [sydtest-mutation-example-gen] - wrapTrue `shouldBe` Just True
  1052. 28.47 s [sydtest-mutation-example-gen] + wrapTrue `shouldBe` Just False
  1053. 28.47 s [sydtest-mutation-example-gen] describe "wrapFalse" $
  1054. 28.47 s [sydtest-mutation-example-gen] it "is Just False" $
  1055. 28.47 s [sydtest-mutation-example-gen] wrapFalse `shouldBe` Just False
  1056. 28.47 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:13:33-38
  1057. 28.47 s [sydtest-mutation-example-gen] @@ -10,7 +10,7 @@
  1058. 28.47 s [sydtest-mutation-example-gen] wrapTrue `shouldBe` Just True
  1059. 28.47 s [sydtest-mutation-example-gen] describe "wrapFalse" $
  1060. 28.47 s [sydtest-mutation-example-gen] it "is Just False" $
  1061. 28.47 s [sydtest-mutation-example-gen] - wrapFalse `shouldBe` Just False
  1062. 28.47 s [sydtest-mutation-example-gen] + wrapFalse `shouldBe` Just True
  1063. 28.47 s [sydtest-mutation-example-gen] describe "negateWrapped" $ do
  1064. 28.47 s [sydtest-mutation-example-gen] it "negates Just True to Just False" $
  1065. 28.47 s [sydtest-mutation-example-gen] negateWrapped (Just True) `shouldBe` Just False
  1066. 28.47 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:16:27-31
  1067. 28.47 s [sydtest-mutation-example-gen] @@ -13,7 +13,7 @@
  1068. 28.47 s [sydtest-mutation-example-gen] wrapFalse `shouldBe` Just False
  1069. 28.47 s [sydtest-mutation-example-gen] describe "negateWrapped" $ do
  1070. 28.47 s [sydtest-mutation-example-gen] it "negates Just True to Just False" $
  1071. 28.47 s [sydtest-mutation-example-gen] - negateWrapped (Just True) `shouldBe` Just False
  1072. 28.47 s [sydtest-mutation-example-gen] + negateWrapped (Just False) `shouldBe` Just False
  1073. 28.47 s [sydtest-mutation-example-gen] it "negates Just False to Just True" $
  1074. 28.47 s [sydtest-mutation-example-gen] negateWrapped (Just False) `shouldBe` Just True
  1075. 28.47 s [sydtest-mutation-example-gen] it "leaves Nothing as Nothing" $
  1076. 28.47 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:16:49-54
  1077. 28.47 s [sydtest-mutation-example-gen] @@ -13,7 +13,7 @@
  1078. 28.47 s [sydtest-mutation-example-gen] wrapFalse `shouldBe` Just False
  1079. 28.47 s [sydtest-mutation-example-gen] describe "negateWrapped" $ do
  1080. 28.47 s [sydtest-mutation-example-gen] it "negates Just True to Just False" $
  1081. 28.47 s [sydtest-mutation-example-gen] - negateWrapped (Just True) `shouldBe` Just False
  1082. 28.47 s [sydtest-mutation-example-gen] + negateWrapped (Just True) `shouldBe` Just True
  1083. 28.47 s [sydtest-mutation-example-gen] it "negates Just False to Just True" $
  1084. 28.47 s [sydtest-mutation-example-gen] negateWrapped (Just False) `shouldBe` Just True
  1085. 28.47 s [sydtest-mutation-example-gen] it "leaves Nothing as Nothing" $
  1086. 28.47 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:18:27-32
  1087. 28.47 s [sydtest-mutation-example-gen] @@ -15,6 +15,6 @@
  1088. 28.47 s [sydtest-mutation-example-gen] it "negates Just True to Just False" $
  1089. 28.47 s [sydtest-mutation-example-gen] negateWrapped (Just True) `shouldBe` Just False
  1090. 28.48 s [sydtest-mutation-example-gen] it "negates Just False to Just True" $
  1091. 28.48 s [sydtest-mutation-example-gen] - negateWrapped (Just False) `shouldBe` Just True
  1092. 28.48 s [sydtest-mutation-example-gen] + negateWrapped (Just True) `shouldBe` Just True
  1093. 28.48 s [sydtest-mutation-example-gen] it "leaves Nothing as Nothing" $
  1094. 28.48 s [sydtest-mutation-example-gen] negateWrapped Nothing `shouldBe` Nothing
  1095. 28.48 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:18:50-54
  1096. 28.48 s [sydtest-mutation-example-gen] @@ -15,6 +15,6 @@
  1097. 28.48 s [sydtest-mutation-example-gen] it "negates Just True to Just False" $
  1098. 28.48 s [sydtest-mutation-example-gen] negateWrapped (Just True) `shouldBe` Just False
  1099. 28.48 s [sydtest-mutation-example-gen] it "negates Just False to Just True" $
  1100. 28.48 s [sydtest-mutation-example-gen] - negateWrapped (Just False) `shouldBe` Just True
  1101. 28.48 s [sydtest-mutation-example-gen] + negateWrapped (Just False) `shouldBe` Just False
  1102. 28.48 s [sydtest-mutation-example-gen] it "leaves Nothing as Nothing" $
  1103. 28.48 s [sydtest-mutation-example-gen] negateWrapped Nothing `shouldBe` Nothing
  1104. 28.48 s [sydtest-mutation-example-gen] added 6 mutations
  1105. 28.55 s [sydtest-mutation-example-gen] mutation: instrumenting Example.BoolLibSpec
  1106. 28.55 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:10:32-36
  1107. 28.55 s [sydtest-mutation-example-gen] @@ -7,7 +7,7 @@
  1108. 28.55 s [sydtest-mutation-example-gen] spec = do
  1109. 28.55 s [sydtest-mutation-example-gen] describe "wrapTrue" $
  1110. 28.55 s [sydtest-mutation-example-gen] it "is Just True" $
  1111. 28.55 s [sydtest-mutation-example-gen] - wrapTrue `shouldBe` Just True
  1112. 28.55 s [sydtest-mutation-example-gen] + wrapTrue `shouldBe` Just False
  1113. 28.55 s [sydtest-mutation-example-gen] describe "wrapFalse" $
  1114. 28.55 s [sydtest-mutation-example-gen] it "is Just False" $
  1115. 28.55 s [sydtest-mutation-example-gen] wrapFalse `shouldBe` Just False
  1116. 28.55 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:13:33-38
  1117. 28.55 s [sydtest-mutation-example-gen] @@ -10,7 +10,7 @@
  1118. 28.55 s [sydtest-mutation-example-gen] wrapTrue `shouldBe` Just True
  1119. 28.55 s [sydtest-mutation-example-gen] describe "wrapFalse" $
  1120. 28.55 s [sydtest-mutation-example-gen] it "is Just False" $
  1121. 28.55 s [sydtest-mutation-example-gen] - wrapFalse `shouldBe` Just False
  1122. 28.55 s [sydtest-mutation-example-gen] + wrapFalse `shouldBe` Just True
  1123. 28.55 s [sydtest-mutation-example-gen] describe "negateWrapped" $ do
  1124. 28.55 s [sydtest-mutation-example-gen] it "negates Just True to Just False" $
  1125. 28.55 s [sydtest-mutation-example-gen] negateWrapped (Just True) `shouldBe` Just False
  1126. 28.55 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:16:27-31
  1127. 28.55 s [sydtest-mutation-example-gen] @@ -13,7 +13,7 @@
  1128. 28.55 s [sydtest-mutation-example-gen] wrapFalse `shouldBe` Just False
  1129. 28.55 s [sydtest-mutation-example-gen] describe "negateWrapped" $ do
  1130. 28.55 s [sydtest-mutation-example-gen] it "negates Just True to Just False" $
  1131. 28.55 s [sydtest-mutation-example-gen] - negateWrapped (Just True) `shouldBe` Just False
  1132. 28.55 s [sydtest-mutation-example-gen] + negateWrapped (Just False) `shouldBe` Just False
  1133. 28.55 s [sydtest-mutation-example-gen] it "negates Just False to Just True" $
  1134. 28.55 s [sydtest-mutation-example-gen] negateWrapped (Just False) `shouldBe` Just True
  1135. 28.56 s [sydtest-mutation-example-gen] it "leaves Nothing as Nothing" $
  1136. 28.56 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:16:49-54
  1137. 28.56 s [sydtest-mutation-example-gen] @@ -13,7 +13,7 @@
  1138. 28.56 s [sydtest-mutation-example-gen] wrapFalse `shouldBe` Just False
  1139. 28.56 s [sydtest-mutation-example-gen] describe "negateWrapped" $ do
  1140. 28.56 s [sydtest-mutation-example-gen] it "negates Just True to Just False" $
  1141. 28.56 s [sydtest-mutation-example-gen] - negateWrapped (Just True) `shouldBe` Just False
  1142. 28.56 s [sydtest-mutation-example-gen] + negateWrapped (Just True) `shouldBe` Just True
  1143. 28.56 s [sydtest-mutation-example-gen] it "negates Just False to Just True" $
  1144. 28.56 s [sydtest-mutation-example-gen] negateWrapped (Just False) `shouldBe` Just True
  1145. 28.56 s [sydtest-mutation-example-gen] it "leaves Nothing as Nothing" $
  1146. 28.56 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:18:27-32
  1147. 28.56 s [sydtest-mutation-example-gen] @@ -15,6 +15,6 @@
  1148. 28.56 s [sydtest-mutation-example-gen] it "negates Just True to Just False" $
  1149. 28.56 s [sydtest-mutation-example-gen] negateWrapped (Just True) `shouldBe` Just False
  1150. 28.56 s [sydtest-mutation-example-gen] it "negates Just False to Just True" $
  1151. 28.56 s [sydtest-mutation-example-gen] - negateWrapped (Just False) `shouldBe` Just True
  1152. 28.56 s [sydtest-mutation-example-gen] + negateWrapped (Just True) `shouldBe` Just True
  1153. 28.56 s [sydtest-mutation-example-gen] it "leaves Nothing as Nothing" $
  1154. 28.56 s [sydtest-mutation-example-gen] negateWrapped Nothing `shouldBe` Nothing
  1155. 28.56 s [sydtest-mutation-example-gen] added mutation BoolLit at test/Example/BoolLibSpec.hs:18:50-54
  1156. 28.56 s [sydtest-mutation-example-gen] @@ -15,6 +15,6 @@
  1157. 28.56 s [sydtest-mutation-example-gen] it "negates Just True to Just False" $
  1158. 28.56 s [sydtest-mutation-example-gen] negateWrapped (Just True) `shouldBe` Just False
  1159. 28.56 s [sydtest-mutation-example-gen] it "negates Just False to Just True" $
  1160. 28.56 s [sydtest-mutation-example-gen] - negateWrapped (Just False) `shouldBe` Just True
  1161. 28.56 s [sydtest-mutation-example-gen] + negateWrapped (Just False) `shouldBe` Just False
  1162. 28.56 s [sydtest-mutation-example-gen] it "leaves Nothing as Nothing" $
  1163. 28.56 s [sydtest-mutation-example-gen] negateWrapped Nothing `shouldBe` Nothing
  1164. 28.56 s [sydtest-mutation-example-gen] added 6 mutations
  1165. 29.48 s [sydtest-mutation-example-gen] [2 of 8] Compiling Example.ExceptionLibSpec ( test/Example/ExceptionLibSpec.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Example/ExceptionLibSpec.o ) [Impure plugin forced recompilation]
  1166. 29.49 s [sydtest-mutation-example-gen] mutation: instrumenting Example.ExceptionLibSpec
  1167. 29.49 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/ExceptionLibSpec.hs:13:47-48
  1168. 29.49 s [sydtest-mutation-example-gen] @@ -10,4 +10,4 @@
  1169. 29.49 s [sydtest-mutation-example-gen] describe "addOneModuleDisabled" $
  1170. 29.49 s [sydtest-mutation-example-gen] it "increments by one" $
  1171. 29.49 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1172. 29.49 s [sydtest-mutation-example-gen] - addOneModuleDisabled n `shouldBe` n + 1
  1173. 29.49 s [sydtest-mutation-example-gen] + addOneModuleDisabled n `shouldBe` n + 0
  1174. 29.49 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/ExceptionLibSpec.hs:13:47-48
  1175. 29.49 s [sydtest-mutation-example-gen] @@ -10,4 +10,4 @@
  1176. 29.49 s [sydtest-mutation-example-gen] describe "addOneModuleDisabled" $
  1177. 29.49 s [sydtest-mutation-example-gen] it "increments by one" $
  1178. 29.49 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1179. 29.49 s [sydtest-mutation-example-gen] - addOneModuleDisabled n `shouldBe` n + 1
  1180. 29.49 s [sydtest-mutation-example-gen] + addOneModuleDisabled n `shouldBe` n + -1
  1181. 29.49 s [sydtest-mutation-example-gen] added 2 mutations
  1182. 29.54 s [sydtest-mutation-example-gen] [2 of 8] Compiling Example.ExceptionLibSpec ( test/Example/ExceptionLibSpec.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Example/ExceptionLibSpec.o ) [Impure plugin forced recompilation]
  1183. 29.56 s [sydtest-mutation-example-gen] mutation: instrumenting Example.ExceptionLibSpec
  1184. 29.56 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/ExceptionLibSpec.hs:13:47-48
  1185. 29.56 s [sydtest-mutation-example-gen] @@ -10,4 +10,4 @@
  1186. 29.56 s [sydtest-mutation-example-gen] describe "addOneModuleDisabled" $
  1187. 29.56 s [sydtest-mutation-example-gen] it "increments by one" $
  1188. 29.56 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1189. 29.56 s [sydtest-mutation-example-gen] - addOneModuleDisabled n `shouldBe` n + 1
  1190. 29.56 s [sydtest-mutation-example-gen] + addOneModuleDisabled n `shouldBe` n + 0
  1191. 29.56 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/ExceptionLibSpec.hs:13:47-48
  1192. 29.56 s [sydtest-mutation-example-gen] @@ -10,4 +10,4 @@
  1193. 29.56 s [sydtest-mutation-example-gen] describe "addOneModuleDisabled" $
  1194. 29.56 s [sydtest-mutation-example-gen] it "increments by one" $
  1195. 29.56 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1196. 29.56 s [sydtest-mutation-example-gen] - addOneModuleDisabled n `shouldBe` n + 1
  1197. 29.56 s [sydtest-mutation-example-gen] + addOneModuleDisabled n `shouldBe` n + -1
  1198. 29.56 s [sydtest-mutation-example-gen] added 2 mutations
  1199. 29.64 s [sydtest-mutation-example-gen] [3 of 8] Compiling Example.FunctionExceptionLibSpec ( test/Example/FunctionExceptionLibSpec.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Example/FunctionExceptionLibSpec.o ) [Impure plugin forced recompilation]
  1200. 29.64 s [sydtest-mutation-example-gen] mutation: instrumenting Example.FunctionExceptionLibSpec
  1201. 29.64 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:13:46-47
  1202. 29.64 s [sydtest-mutation-example-gen] @@ -10,7 +10,7 @@
  1203. 29.64 s [sydtest-mutation-example-gen] describe "addOneArithDisabled" $
  1204. 29.64 s [sydtest-mutation-example-gen] it "increments by one" $
  1205. 29.64 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1206. 29.64 s [sydtest-mutation-example-gen] - addOneArithDisabled n `shouldBe` n + 1
  1207. 29.64 s [sydtest-mutation-example-gen] + addOneArithDisabled n `shouldBe` n + 0
  1208. 29.64 s [sydtest-mutation-example-gen] describe "addOneArithAndIntLitDisabled" $
  1209. 29.64 s [sydtest-mutation-example-gen] it "increments by one" $
  1210. 29.64 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1211. 29.64 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:13:46-47
  1212. 29.64 s [sydtest-mutation-example-gen] @@ -10,7 +10,7 @@
  1213. 29.64 s [sydtest-mutation-example-gen] describe "addOneArithDisabled" $
  1214. 29.64 s [sydtest-mutation-example-gen] it "increments by one" $
  1215. 29.64 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1216. 29.64 s [sydtest-mutation-example-gen] - addOneArithDisabled n `shouldBe` n + 1
  1217. 29.64 s [sydtest-mutation-example-gen] + addOneArithDisabled n `shouldBe` n + -1
  1218. 29.65 s [sydtest-mutation-example-gen] describe "addOneArithAndIntLitDisabled" $
  1219. 29.65 s [sydtest-mutation-example-gen] it "increments by one" $
  1220. 29.65 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1221. 29.65 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:17:55-56
  1222. 29.65 s [sydtest-mutation-example-gen] @@ -14,7 +14,7 @@
  1223. 29.65 s [sydtest-mutation-example-gen] describe "addOneArithAndIntLitDisabled" $
  1224. 29.65 s [sydtest-mutation-example-gen] it "increments by one" $
  1225. 29.65 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1226. 29.65 s [sydtest-mutation-example-gen] - addOneArithAndIntLitDisabled n `shouldBe` n + 1
  1227. 29.65 s [sydtest-mutation-example-gen] + addOneArithAndIntLitDisabled n `shouldBe` n + 0
  1228. 29.65 s [sydtest-mutation-example-gen] describe "addOneFunctionDisabled" $
  1229. 29.65 s [sydtest-mutation-example-gen] it "increments by one" $
  1230. 29.65 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1231. 29.65 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:17:55-56
  1232. 29.65 s [sydtest-mutation-example-gen] @@ -14,7 +14,7 @@
  1233. 29.65 s [sydtest-mutation-example-gen] describe "addOneArithAndIntLitDisabled" $
  1234. 29.65 s [sydtest-mutation-example-gen] it "increments by one" $
  1235. 29.65 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1236. 29.65 s [sydtest-mutation-example-gen] - addOneArithAndIntLitDisabled n `shouldBe` n + 1
  1237. 29.65 s [sydtest-mutation-example-gen] + addOneArithAndIntLitDisabled n `shouldBe` n + -1
  1238. 29.65 s [sydtest-mutation-example-gen] describe "addOneFunctionDisabled" $
  1239. 29.65 s [sydtest-mutation-example-gen] it "increments by one" $
  1240. 29.65 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1241. 29.65 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:21:49-50
  1242. 29.65 s [sydtest-mutation-example-gen] @@ -18,4 +18,4 @@
  1243. 29.65 s [sydtest-mutation-example-gen] describe "addOneFunctionDisabled" $
  1244. 29.65 s [sydtest-mutation-example-gen] it "increments by one" $
  1245. 29.65 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1246. 29.65 s [sydtest-mutation-example-gen] - addOneFunctionDisabled n `shouldBe` n + 1
  1247. 29.65 s [sydtest-mutation-example-gen] + addOneFunctionDisabled n `shouldBe` n + 0
  1248. 29.65 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:21:49-50
  1249. 29.65 s [sydtest-mutation-example-gen] @@ -18,4 +18,4 @@
  1250. 29.65 s [sydtest-mutation-example-gen] describe "addOneFunctionDisabled" $
  1251. 29.65 s [sydtest-mutation-example-gen] it "increments by one" $
  1252. 29.65 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1253. 29.65 s [sydtest-mutation-example-gen] - addOneFunctionDisabled n `shouldBe` n + 1
  1254. 29.65 s [sydtest-mutation-example-gen] + addOneFunctionDisabled n `shouldBe` n + -1
  1255. 29.65 s [sydtest-mutation-example-gen] added 6 mutations
  1256. 29.70 s [sydtest-mutation-example-gen] [3 of 8] Compiling Example.FunctionExceptionLibSpec ( test/Example/FunctionExceptionLibSpec.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Example/FunctionExceptionLibSpec.o ) [Impure plugin forced recompilation]
  1257. 29.71 s [sydtest-mutation-example-gen] mutation: instrumenting Example.FunctionExceptionLibSpec
  1258. 29.71 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:13:46-47
  1259. 29.71 s [sydtest-mutation-example-gen] @@ -10,7 +10,7 @@
  1260. 29.71 s [sydtest-mutation-example-gen] describe "addOneArithDisabled" $
  1261. 29.71 s [sydtest-mutation-example-gen] it "increments by one" $
  1262. 29.71 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1263. 29.71 s [sydtest-mutation-example-gen] - addOneArithDisabled n `shouldBe` n + 1
  1264. 29.71 s [sydtest-mutation-example-gen] + addOneArithDisabled n `shouldBe` n + 0
  1265. 29.71 s [sydtest-mutation-example-gen] describe "addOneArithAndIntLitDisabled" $
  1266. 29.71 s [sydtest-mutation-example-gen] it "increments by one" $
  1267. 29.71 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1268. 29.71 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:13:46-47
  1269. 29.71 s [sydtest-mutation-example-gen] @@ -10,7 +10,7 @@
  1270. 29.71 s [sydtest-mutation-example-gen] describe "addOneArithDisabled" $
  1271. 29.71 s [sydtest-mutation-example-gen] it "increments by one" $
  1272. 29.71 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1273. 29.71 s [sydtest-mutation-example-gen] - addOneArithDisabled n `shouldBe` n + 1
  1274. 29.71 s [sydtest-mutation-example-gen] + addOneArithDisabled n `shouldBe` n + -1
  1275. 29.71 s [sydtest-mutation-example-gen] describe "addOneArithAndIntLitDisabled" $
  1276. 29.71 s [sydtest-mutation-example-gen] it "increments by one" $
  1277. 29.71 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1278. 29.71 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:17:55-56
  1279. 29.71 s [sydtest-mutation-example-gen] @@ -14,7 +14,7 @@
  1280. 29.71 s [sydtest-mutation-example-gen] describe "addOneArithAndIntLitDisabled" $
  1281. 29.71 s [sydtest-mutation-example-gen] it "increments by one" $
  1282. 29.71 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1283. 29.71 s [sydtest-mutation-example-gen] - addOneArithAndIntLitDisabled n `shouldBe` n + 1
  1284. 29.71 s [sydtest-mutation-example-gen] + addOneArithAndIntLitDisabled n `shouldBe` n + 0
  1285. 29.71 s [sydtest-mutation-example-gen] describe "addOneFunctionDisabled" $
  1286. 29.71 s [sydtest-mutation-example-gen] it "increments by one" $
  1287. 29.71 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1288. 29.71 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:17:55-56
  1289. 29.71 s [sydtest-mutation-example-gen] @@ -14,7 +14,7 @@
  1290. 29.72 s [sydtest-mutation-example-gen] describe "addOneArithAndIntLitDisabled" $
  1291. 29.72 s [sydtest-mutation-example-gen] it "increments by one" $
  1292. 29.72 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1293. 29.72 s [sydtest-mutation-example-gen] - addOneArithAndIntLitDisabled n `shouldBe` n + 1
  1294. 29.72 s [sydtest-mutation-example-gen] + addOneArithAndIntLitDisabled n `shouldBe` n + -1
  1295. 29.72 s [sydtest-mutation-example-gen] describe "addOneFunctionDisabled" $
  1296. 29.72 s [sydtest-mutation-example-gen] it "increments by one" $
  1297. 29.72 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1298. 29.72 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:21:49-50
  1299. 29.72 s [sydtest-mutation-example-gen] @@ -18,4 +18,4 @@
  1300. 29.72 s [sydtest-mutation-example-gen] describe "addOneFunctionDisabled" $
  1301. 29.72 s [sydtest-mutation-example-gen] it "increments by one" $
  1302. 29.72 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1303. 29.72 s [sydtest-mutation-example-gen] - addOneFunctionDisabled n `shouldBe` n + 1
  1304. 29.72 s [sydtest-mutation-example-gen] + addOneFunctionDisabled n `shouldBe` n + 0
  1305. 29.72 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/FunctionExceptionLibSpec.hs:21:49-50
  1306. 29.72 s [sydtest-mutation-example-gen] @@ -18,4 +18,4 @@
  1307. 29.72 s [sydtest-mutation-example-gen] describe "addOneFunctionDisabled" $
  1308. 29.72 s [sydtest-mutation-example-gen] it "increments by one" $
  1309. 29.72 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1310. 29.72 s [sydtest-mutation-example-gen] - addOneFunctionDisabled n `shouldBe` n + 1
  1311. 29.72 s [sydtest-mutation-example-gen] + addOneFunctionDisabled n `shouldBe` n + -1
  1312. 29.72 s [sydtest-mutation-example-gen] added 6 mutations
  1313. 29.84 s [sydtest-mutation-example-gen] [4 of 8] Compiling Example.LibSpec ( test/Example/LibSpec.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Example/LibSpec.o ) [Impure plugin forced recompilation]
  1314. 29.85 s [sydtest-mutation-example-gen] mutation: instrumenting Example.LibSpec
  1315. 29.85 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/LibSpec.hs:13:33-34
  1316. 29.85 s [sydtest-mutation-example-gen] @@ -10,7 +10,7 @@
  1317. 29.85 s [sydtest-mutation-example-gen] describe "addOne" $ do
  1318. 29.85 s [sydtest-mutation-example-gen] it "increments by one" $
  1319. 29.85 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1320. 29.85 s [sydtest-mutation-example-gen] - addOne n `shouldBe` n + 1
  1321. 29.85 s [sydtest-mutation-example-gen] + addOne n `shouldBe` n + 0
  1322. 29.85 s [sydtest-mutation-example-gen] it "is greater than its input" $
  1323. 29.85 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1324. 29.85 s [sydtest-mutation-example-gen] addOne n > n
  1325. 29.85 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/LibSpec.hs:13:33-34
  1326. 29.85 s [sydtest-mutation-example-gen] @@ -10,7 +10,7 @@
  1327. 29.85 s [sydtest-mutation-example-gen] describe "addOne" $ do
  1328. 29.85 s [sydtest-mutation-example-gen] it "increments by one" $
  1329. 29.85 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1330. 29.85 s [sydtest-mutation-example-gen] - addOne n `shouldBe` n + 1
  1331. 29.85 s [sydtest-mutation-example-gen] + addOne n `shouldBe` n + -1
  1332. 29.85 s [sydtest-mutation-example-gen] it "is greater than its input" $
  1333. 29.85 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1334. 29.85 s [sydtest-mutation-example-gen] addOne n > n
  1335. 29.85 s [sydtest-mutation-example-gen] added mutation ConstBool at test/Example/LibSpec.hs:16:9-21
  1336. 29.86 s [sydtest-mutation-example-gen] @@ -13,4 +13,4 @@
  1337. 29.86 s [sydtest-mutation-example-gen] addOne n `shouldBe` n + 1
  1338. 29.86 s [sydtest-mutation-example-gen] it "is greater than its input" $
  1339. 29.86 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1340. 29.86 s [sydtest-mutation-example-gen] - addOne n > n
  1341. 29.86 s [sydtest-mutation-example-gen] + True
  1342. 29.86 s [sydtest-mutation-example-gen] added mutation ConstBool at test/Example/LibSpec.hs:16:9-21
  1343. 29.86 s [sydtest-mutation-example-gen] @@ -13,4 +13,4 @@
  1344. 29.86 s [sydtest-mutation-example-gen] addOne n `shouldBe` n + 1
  1345. 29.86 s [sydtest-mutation-example-gen] it "is greater than its input" $
  1346. 29.86 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1347. 29.86 s [sydtest-mutation-example-gen] - addOne n > n
  1348. 29.86 s [sydtest-mutation-example-gen] + False
  1349. 29.86 s [sydtest-mutation-example-gen] added mutation Negate at test/Example/LibSpec.hs:16:9-21
  1350. 29.86 s [sydtest-mutation-example-gen] @@ -13,4 +13,4 @@
  1351. 29.86 s [sydtest-mutation-example-gen] addOne n `shouldBe` n + 1
  1352. 29.86 s [sydtest-mutation-example-gen] it "is greater than its input" $
  1353. 29.86 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1354. 29.86 s [sydtest-mutation-example-gen] - addOne n > n
  1355. 29.86 s [sydtest-mutation-example-gen] + not (addOne n > n)
  1356. 29.86 s [sydtest-mutation-example-gen] added 5 mutations
  1357. 29.94 s [sydtest-mutation-example-gen] [4 of 8] Compiling Example.LibSpec ( test/Example/LibSpec.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Example/LibSpec.o ) [Impure plugin forced recompilation]
  1358. 29.94 s [sydtest-mutation-example-gen] mutation: instrumenting Example.LibSpec
  1359. 29.95 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/LibSpec.hs:13:33-34
  1360. 29.95 s [sydtest-mutation-example-gen] @@ -10,7 +10,7 @@
  1361. 29.95 s [sydtest-mutation-example-gen] describe "addOne" $ do
  1362. 29.95 s [sydtest-mutation-example-gen] it "increments by one" $
  1363. 29.95 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1364. 29.95 s [sydtest-mutation-example-gen] - addOne n `shouldBe` n + 1
  1365. 29.95 s [sydtest-mutation-example-gen] + addOne n `shouldBe` n + 0
  1366. 29.95 s [sydtest-mutation-example-gen] it "is greater than its input" $
  1367. 29.95 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1368. 29.95 s [sydtest-mutation-example-gen] addOne n > n
  1369. 29.95 s [sydtest-mutation-example-gen] added mutation IntLit at test/Example/LibSpec.hs:13:33-34
  1370. 29.95 s [sydtest-mutation-example-gen] @@ -10,7 +10,7 @@
  1371. 29.95 s [sydtest-mutation-example-gen] describe "addOne" $ do
  1372. 29.95 s [sydtest-mutation-example-gen] it "increments by one" $
  1373. 29.95 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1374. 29.95 s [sydtest-mutation-example-gen] - addOne n `shouldBe` n + 1
  1375. 29.95 s [sydtest-mutation-example-gen] + addOne n `shouldBe` n + -1
  1376. 29.95 s [sydtest-mutation-example-gen] it "is greater than its input" $
  1377. 29.95 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1378. 29.95 s [sydtest-mutation-example-gen] addOne n > n
  1379. 29.95 s [sydtest-mutation-example-gen] added mutation ConstBool at test/Example/LibSpec.hs:16:9-21
  1380. 29.95 s [sydtest-mutation-example-gen] @@ -13,4 +13,4 @@
  1381. 29.95 s [sydtest-mutation-example-gen] addOne n `shouldBe` n + 1
  1382. 29.95 s [sydtest-mutation-example-gen] it "is greater than its input" $
  1383. 29.95 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1384. 29.95 s [sydtest-mutation-example-gen] - addOne n > n
  1385. 29.95 s [sydtest-mutation-example-gen] + True
  1386. 29.95 s [sydtest-mutation-example-gen] added mutation ConstBool at test/Example/LibSpec.hs:16:9-21
  1387. 29.95 s [sydtest-mutation-example-gen] @@ -13,4 +13,4 @@
  1388. 29.95 s [sydtest-mutation-example-gen] addOne n `shouldBe` n + 1
  1389. 29.95 s [sydtest-mutation-example-gen] it "is greater than its input" $
  1390. 29.95 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1391. 29.95 s [sydtest-mutation-example-gen] - addOne n > n
  1392. 29.95 s [sydtest-mutation-example-gen] + False
  1393. 29.95 s [sydtest-mutation-example-gen] added mutation Negate at test/Example/LibSpec.hs:16:9-21
  1394. 29.95 s [sydtest-mutation-example-gen] @@ -13,4 +13,4 @@
  1395. 29.95 s [sydtest-mutation-example-gen] addOne n `shouldBe` n + 1
  1396. 29.95 s [sydtest-mutation-example-gen] it "is greater than its input" $
  1397. 29.95 s [sydtest-mutation-example-gen] forAll genInt $ \n ->
  1398. 29.95 s [sydtest-mutation-example-gen] - addOne n > n
  1399. 29.95 s [sydtest-mutation-example-gen] + not (addOne n > n)
  1400. 29.95 s [sydtest-mutation-example-gen] added 5 mutations
  1401. 29.98 s [sydtest-mutation-example-gen] [5 of 8] Compiling Paths_sydtest_mutation_example_gen ( dist/build/sydtest-mutation-example-gen-test/autogen/Paths_sydtest_mutation_example_gen.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Paths_sydtest_mutation_example_gen.o ) [Impure plugin forced recompilation]
  1402. 30.10 s [sydtest-mutation-example-gen] [5 of 8] Compiling Paths_sydtest_mutation_example_gen ( dist/build/sydtest-mutation-example-gen-test/autogen/Paths_sydtest_mutation_example_gen.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Paths_sydtest_mutation_example_gen.o ) [Impure plugin forced recompilation]
  1403. 30.14 s [sydtest-mutation-example-gen] [6 of 8] Compiling Spec ( test/Spec.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Spec.o ) [Impure plugin forced recompilation]
  1404. 30.14 s [sydtest-mutation-example-gen] mutation: instrumenting Spec
  1405. 30.15 s [sydtest-mutation-example-gen] added 0 mutations
  1406. 30.22 s [sydtest-mutation-example-gen] [7 of 8] Compiling Main ( test/Main.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Main.o ) [Impure plugin forced recompilation]
  1407. 30.23 s [sydtest-mutation-example-gen] mutation: instrumenting Main
  1408. 30.23 s [sydtest-mutation-example-gen] added 0 mutations
  1409. 30.25 s [sydtest-mutation-example-gen] [6 of 8] Compiling Spec ( test/Spec.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Spec.o ) [Impure plugin forced recompilation]
  1410. 30.25 s [sydtest-mutation-example-gen] mutation: instrumenting Spec
  1411. 30.25 s [sydtest-mutation-example-gen] added 0 mutations
  1412. 30.30 s [sydtest-mutation-example-gen] [8 of 8] Linking dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test
  1413. 30.33 s [sydtest-mutation-example-gen] [7 of 8] Compiling Main ( test/Main.hs, dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test-tmp/Main.o ) [Impure plugin forced recompilation]
  1414. 30.35 s [sydtest-mutation-example-gen] mutation: instrumenting Main
  1415. 30.35 s [sydtest-mutation-example-gen] added 0 mutations
  1416. 30.42 s [sydtest-mutation-example-gen] [8 of 8] Linking dist/build/sydtest-mutation-example-gen-test/sydtest-mutation-example-gen-test
  1417. 33.75 s [sydtest-mutation-example-gen] mutation-nix: manifest output at /nix/store/jdzypd24s04h7w33pjd5xsn3vj2s74ha-sydtest-mutation-example-gen-0.0.0.0-manifest:
  1418. 33.83 s [sydtest-mutation-example-gen] total 68
  1419. 33.83 s [sydtest-mutation-example-gen] drwxr-xr-x 2 nixbld nixbld 4096 May 13 16:04 .
  1420. 33.83 s [sydtest-mutation-example-gen] drwxrwxr-t 315 nobody nixbld 32768 May 13 16:04 ..
  1421. 33.83 s [sydtest-mutation-example-gen] -rw-r--r-- 1 nixbld nixbld 3841 May 13 16:04 Example.BoolLibSpec.json
  1422. 33.83 s [sydtest-mutation-example-gen] -rw-r--r-- 1 nixbld nixbld 1026 May 13 16:04 Example.ExceptionLibSpec.json
  1423. 33.83 s [sydtest-mutation-example-gen] -rw-r--r-- 1 nixbld nixbld 3706 May 13 16:04 Example.FunctionExceptionLibSpec.json
  1424. 33.83 s [sydtest-mutation-example-gen] -rw-r--r-- 1 nixbld nixbld 2 May 13 16:04 Example.Gen.json
  1425. 33.83 s [sydtest-mutation-example-gen] -rw-r--r-- 1 nixbld nixbld 2403 May 13 16:04 Example.LibSpec.json
  1426. 33.83 s [sydtest-mutation-example-gen] -rw-r--r-- 1 nixbld nixbld 2 May 13 16:04 Main.json
  1427. 33.83 s [sydtest-mutation-example-gen] -rw-r--r-- 1 nixbld nixbld 2 May 13 16:04 Spec.json
  1428. 33.83 s [sydtest-mutation-example-gen] Phase: checkPhase
  1429. 33.96 s [sydtest-mutation-example-gen] mutation-nix: manifest output at /nix/store/4pvqd2g62cdwjc64irsam3dffgl98x90-sydtest-mutation-example-gen-0.0.0.0-manifest:
  1430. 33.96 s [sydtest-mutation-example-gen] total 68
  1431. 33.96 s [sydtest-mutation-example-gen] drwxr-xr-x 2 nixbld nixbld 4096 May 13 16:04 .
  1432. 33.96 s [sydtest-mutation-example-gen] drwxrwxr-t 315 nobody nixbld 32768 May 13 16:04 ..
  1433. 33.96 s [sydtest-mutation-example-gen] -rw-r--r-- 1 nixbld nixbld 3841 May 13 16:04 Example.BoolLibSpec.json
  1434. 33.96 s [sydtest-mutation-example-gen] -rw-r--r-- 1 nixbld nixbld 1026 May 13 16:04 Example.ExceptionLibSpec.json
  1435. 33.96 s [sydtest-mutation-example-gen] -rw-r--r-- 1 nixbld nixbld 3706 May 13 16:04 Example.FunctionExceptionLibSpec.json
  1436. 33.96 s [sydtest-mutation-example-gen] -rw-r--r-- 1 nixbld nixbld 2 May 13 16:04 Example.Gen.json
  1437. 33.97 s [sydtest-mutation-example-gen] -rw-r--r-- 1 nixbld nixbld 2403 May 13 16:04 Example.LibSpec.json
  1438. 33.97 s [sydtest-mutation-example-gen] -rw-r--r-- 1 nixbld nixbld 2 May 13 16:04 Main.json
  1439. 33.97 s [sydtest-mutation-example-gen] -rw-r--r-- 1 nixbld nixbld 2 May 13 16:04 Spec.json
  1440. 33.97 s [sydtest-mutation-example-gen] Phase: checkPhase
  1441. 33.98 s [sydtest-mutation-example-gen] no Makefile or custom checkPhase, doing nothing
  1442. 33.99 s [sydtest-mutation-example-gen] Phase: haddockPhase
  1443. 34.00 s [sydtest-mutation-example-gen] Phase: installPhase
  1444. 34.29 s [sydtest-mutation-example-gen] Installing library in /nix/store/1prdnk87rkppdrzj2vfx735clnm60jfd-sydtest-mutation-example-gen-0.0.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  1445. 34.76 s [sydtest-mutation-example-gen] Running 1 test suites...
  1446. 34.76 s [sydtest-mutation-example-gen] Test suite sydtest-mutation-example-gen-test: RUNNING...
  1447. 34.84 s [sydtest-mutation-example-gen] Tests:
  1448. 34.84 s [sydtest-mutation-example-gen]
  1449. 34.84 s [sydtest-mutation-example-gen] Example.LibSpec
  1450. 34.84 s [sydtest-mutation-example-gen] addOne
  1451. 34.84 s [sydtest-mutation-example-gen] is greater than its input 3.73 ms
  1452. 34.84 s [sydtest-mutation-example-gen] passed for all of 100 inputs.
  1453. 34.84 s [sydtest-mutation-example-gen] increments by one 4.34 ms
  1454. 34.84 s [sydtest-mutation-example-gen] passed for all of 100 inputs.
  1455. 34.84 s [sydtest-mutation-example-gen] Example.BoolLibSpec
  1456. 34.84 s [sydtest-mutation-example-gen] wrapTrue
  1457. 34.84 s [sydtest-mutation-example-gen] is Just True 3.78 ms
  1458. 34.84 s [sydtest-mutation-example-gen] wrapFalse
  1459. 34.84 s [sydtest-mutation-example-gen] is Just False 2.65 ms
  1460. 34.85 s [sydtest-mutation-example-gen] negateWrapped
  1461. 34.85 s [sydtest-mutation-example-gen] negates Just True to Just False 2.62 ms
  1462. 34.85 s [sydtest-mutation-example-gen] leaves Nothing as Nothing 0.02 ms
  1463. 34.85 s [sydtest-mutation-example-gen] negates Just False to Just True 2.65 ms
  1464. 34.85 s [sydtest-mutation-example-gen] Example.ExceptionLibSpec
  1465. 34.85 s [sydtest-mutation-example-gen] addOneModuleDisabled
  1466. 34.85 s [sydtest-mutation-example-gen] increments by one 4.69 ms
  1467. 34.85 s [sydtest-mutation-example-gen] passed for all of 100 inputs.
  1468. 34.85 s [sydtest-mutation-example-gen] Example.FunctionExceptionLibSpec
  1469. 34.85 s [sydtest-mutation-example-gen] addOneArithAndIntLitDisabled
  1470. 34.85 s [sydtest-mutation-example-gen] increments by one 3.61 ms
  1471. 34.85 s [sydtest-mutation-example-gen] passed for all of 100 inputs.
  1472. 34.85 s [sydtest-mutation-example-gen] addOneFunctionDisabled
  1473. 34.85 s [sydtest-mutation-example-gen] increments by one 4.53 ms
  1474. 34.85 s [sydtest-mutation-example-gen] passed for all of 100 inputs.
  1475. 34.85 s [sydtest-mutation-example-gen] addOneArithDisabled
  1476. 34.85 s [sydtest-mutation-example-gen] increments by one 9.22 ms
  1477. 34.85 s [sydtest-mutation-example-gen] passed for all of 100 inputs.
  1478. 34.85 s [sydtest-mutation-example-gen]
  1479. 34.85 s [sydtest-mutation-example-gen] Examples: 605
  1480. 34.85 s [sydtest-mutation-example-gen] Passed: 11
  1481. 34.85 s [sydtest-mutation-example-gen] Failed: 0
  1482. 34.85 s [sydtest-mutation-example-gen] Sum of test runtimes: 0.04 seconds
  1483. 34.85 s [sydtest-mutation-example-gen] Test suite took: 0.02 seconds
  1484. 34.85 s [sydtest-mutation-example-gen]
  1485. 34.87 s [sydtest-mutation-example-gen] Test suite sydtest-mutation-example-gen-test: PASS
  1486. 34.87 s [sydtest-mutation-example-gen] Test suite logged to:
  1487. 34.87 s [sydtest-mutation-example-gen] dist/test/sydtest-mutation-example-gen-0.0.0.0-sydtest-mutation-example-gen-test.log
  1488. 34.87 s [sydtest-mutation-example-gen] 1 of 1 test suites (1 of 1 test cases) passed.
  1489. 34.89 s [sydtest-mutation-example-gen] Phase: fixupPhase
  1490. 34.90 s [sydtest-mutation-example-gen] Phase: haddockPhase
  1491. 34.92 s [sydtest-mutation-example-gen] Phase: installPhase
  1492. 34.92 s [sydtest-mutation-example-gen] shrinking RPATHs of ELF executables and libraries in /nix/store/1prdnk87rkppdrzj2vfx735clnm60jfd-sydtest-mutation-example-gen-0.0.0.0
  1493. 34.92 s [sydtest-mutation-example-gen] shrinking /nix/store/1prdnk87rkppdrzj2vfx735clnm60jfd-sydtest-mutation-example-gen-0.0.0.0/test/sydtest-mutation-example-gen-test
  1494. 34.98 s [sydtest-mutation-example-gen] shrinking /nix/store/1prdnk87rkppdrzj2vfx735clnm60jfd-sydtest-mutation-example-gen-0.0.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHSsydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ-ghc9.10.3.so
  1495. 35.02 s [sydtest-mutation-example-gen] checking for references to /build/ in /nix/store/1prdnk87rkppdrzj2vfx735clnm60jfd-sydtest-mutation-example-gen-0.0.0.0...
  1496. 35.10 s [sydtest-mutation-example-gen] patching script interpreter paths in /nix/store/1prdnk87rkppdrzj2vfx735clnm60jfd-sydtest-mutation-example-gen-0.0.0.0
  1497. 35.12 s [sydtest-mutation-example-gen] stripping (with command strip and flags -S -p) in /nix/store/1prdnk87rkppdrzj2vfx735clnm60jfd-sydtest-mutation-example-gen-0.0.0.0/lib
  1498. 35.20 s [sydtest-mutation-example-gen] shrinking RPATHs of ELF executables and libraries in /nix/store/4pvqd2g62cdwjc64irsam3dffgl98x90-sydtest-mutation-example-gen-0.0.0.0-manifest
  1499. 35.21 s [sydtest-mutation-example-gen] checking for references to /build/ in /nix/store/4pvqd2g62cdwjc64irsam3dffgl98x90-sydtest-mutation-example-gen-0.0.0.0-manifest...
  1500. 35.24 s [sydtest-mutation-example-gen] patching script interpreter paths in /nix/store/4pvqd2g62cdwjc64irsam3dffgl98x90-sydtest-mutation-example-gen-0.0.0.0-manifest
  1501. 35.40 s Progress: 3 of 6 built (1 building)
  1502. 35.40 s [sydtest-mutation-example-gen] Installing library in /nix/store/rs2c62009aas9nlf4rxkpmpqsa5ivg8c-sydtest-mutation-example-gen-0.0.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/sydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ
  1503. 35.90 s [sydtest-mutation-example-gen] Phase: fixupPhase
  1504. 35.94 s [sydtest-mutation-example-gen] shrinking RPATHs of ELF executables and libraries in /nix/store/rs2c62009aas9nlf4rxkpmpqsa5ivg8c-sydtest-mutation-example-gen-0.0.0.0
  1505. 35.94 s [sydtest-mutation-example-gen] shrinking /nix/store/rs2c62009aas9nlf4rxkpmpqsa5ivg8c-sydtest-mutation-example-gen-0.0.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHSsydtest-mutation-example-gen-0.0.0.0-4cnK2StUrYnd9LDLBLqHJ-ghc9.10.3.so
  1506. 35.98 s [sydtest-mutation-example-gen] checking for references to /build/ in /nix/store/rs2c62009aas9nlf4rxkpmpqsa5ivg8c-sydtest-mutation-example-gen-0.0.0.0...
  1507. 36.02 s [sydtest-mutation-example-gen] patching script interpreter paths in /nix/store/rs2c62009aas9nlf4rxkpmpqsa5ivg8c-sydtest-mutation-example-gen-0.0.0.0
  1508. 36.03 s [sydtest-mutation-example-gen] stripping (with command strip and flags -S -p) in /nix/store/rs2c62009aas9nlf4rxkpmpqsa5ivg8c-sydtest-mutation-example-gen-0.0.0.0/lib
  1509. 36.09 s [sydtest-mutation-example-gen] shrinking RPATHs of ELF executables and libraries in /nix/store/jdzypd24s04h7w33pjd5xsn3vj2s74ha-sydtest-mutation-example-gen-0.0.0.0-manifest
  1510. 36.10 s [sydtest-mutation-example-gen] checking for references to /build/ in /nix/store/jdzypd24s04h7w33pjd5xsn3vj2s74ha-sydtest-mutation-example-gen-0.0.0.0-manifest...
  1511. 36.12 s [sydtest-mutation-example-gen] patching script interpreter paths in /nix/store/jdzypd24s04h7w33pjd5xsn3vj2s74ha-sydtest-mutation-example-gen-0.0.0.0-manifest
  1512. 36.26 s Progress: 4 of 6 built
  1513. 36.35 s Building sydtest-mutation-example
  1514. 37.00 s [sydtest-mutation-example] Phase: setupCompilerEnvironmentPhase
  1515. 37.01 s [sydtest-mutation-example] Build with /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3.
  1516. 38.47 s [sydtest-mutation-example] Phase: unpackPhase
  1517. 38.48 s [sydtest-mutation-example] unpacking source archive /nix/store/kq9grz414c3zlh91q4iyyha6v39xicmg-sydtest-mutation-example-source-0.0.0.0/sydtest-mutation-example-0.0.0.0.tar.gz
  1518. 38.50 s [sydtest-mutation-example] source root is sydtest-mutation-example-0.0.0.0
  1519. 38.52 s [sydtest-mutation-example] setting SOURCE_DATE_EPOCH to timestamp 1778688098 of file "sydtest-mutation-example-0.0.0.0/test/Spec.hs"
  1520. 38.53 s [sydtest-mutation-example] Phase: patchPhase
  1521. 38.56 s [sydtest-mutation-example] Phase: compileBuildDriverPhase
  1522. 38.57 s [sydtest-mutation-example] setupCompileFlags: -package-db=/build/tmp.mujrydP7F4/setup-package.conf.d -threaded
  1523. 38.76 s [sydtest-mutation-example] [1 of 2] Compiling Main ( Setup.hs, /build/tmp.mujrydP7F4/Main.o )
  1524. 38.94 s [sydtest-mutation-example] [2 of 2] Linking Setup
  1525. 42.69 s [sydtest-mutation-example] Phase: updateAutotoolsGnuConfigScriptsPhase
  1526. 42.72 s [sydtest-mutation-example] Phase: configurePhase
  1527. 42.73 s [sydtest-mutation-example] configureFlags: --verbose --prefix=/nix/store/hjq5n20l59q718h8jp46pr9vgah0gaq1-sydtest-mutation-example-0.0.0.0 --libdir=$prefix/lib/$compiler/lib --libsubdir=$abi/$libname --with-gcc=gcc --package-db=/build/tmp.mujrydP7F4/package.conf.d --ghc-option=-j16 --ghc-option=+RTS --ghc-option=-A64M --ghc-option=-RTS --enable-library-profiling --profiling-detail=exported-functions --disable-profiling --enable-shared --disable-coverage --disable-static --disable-executable-dynamic --enable-tests --disable-benchmarks --enable-library-vanilla --disable-library-for-ghci --enable-split-sections --enable-library-stripping --enable-executable-stripping --ghc-options=-O2 --ghc-options=-Wall --ghc-options=-Wincomplete-uni-patterns --ghc-options=-Wincomplete-record-updates --ghc-options=-Wpartial-fields --ghc-options=-Widentities --ghc-options=-Wredundant-constraints --ghc-options=-Wcpp-undef --ghc-options=-Wunused-packages --ghc-options=-Werror --ghc-options=-Wno-deprecations --disable-optimization --ghc-option=-j1 --ghc-option=+RTS --ghc-option=-A32M --ghc-option=-M16g --ghc-option=-RTS --extra-lib-dirs=/nix/store/ffyzkisqs4vc4mg28bwwlyqjf8i9ph6b-ncurses-6.5/lib --extra-lib-dirs=/nix/store/n28qgdj8c1q41kf7n4y1jxa6ckp85m3c-libffi-3.5.2/lib --extra-lib-dirs=/nix/store/1b6h99dw7bk4wbn77kbalih42zbc67m1-elfutils-0.194/lib --extra-lib-dirs=/nix/store/hi0ar880110k6jsmmili7dh1gq3cg2a9-gmp-with-cxx-6.3.0/lib --extra-lib-dirs=/nix/store/g09cflpnp4g80q56sj9dng1qzv4v4ybc-numactl-2.0.18/lib --extra-lib-dirs=/nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/lib
  1528. 42.75 s [sydtest-mutation-example] Using Parsec parser
  1529. 42.75 s [sydtest-mutation-example] Configuring sydtest-mutation-example-0.0.0.0...
  1530. 45.17 s [sydtest-mutation-example] Dependency base >=4.7 && <5: using base-4.20.2.0
  1531. 45.20 s [sydtest-mutation-example] Dependency base >=4.7 && <5: using base-4.20.2.0
  1532. 45.20 s [sydtest-mutation-example] Dependency sydtest: using sydtest-0.23.0.2
  1533. 45.20 s [sydtest-mutation-example] Dependency sydtest-mutation-example: using sydtest-mutation-example-0.0.0.0
  1534. 45.20 s [sydtest-mutation-example] Source component graph:
  1535. 45.20 s [sydtest-mutation-example] component lib
  1536. 45.20 s [sydtest-mutation-example] component test:sydtest-mutation-example-test dependency lib
  1537. 45.20 s [sydtest-mutation-example] Configured component graph:
  1538. 45.20 s [sydtest-mutation-example] component sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA
  1539. 45.20 s [sydtest-mutation-example] include base-4.20.2.0-64da
  1540. 45.20 s [sydtest-mutation-example] component sydtest-mutation-example-0.0.0.0-8eNP0kEWkFBLuikqb8br1V-sydtest-mutation-example-test
  1541. 45.20 s [sydtest-mutation-example] include base-4.20.2.0-64da
  1542. 45.20 s [sydtest-mutation-example] include sydtest-0.23.0.2-RzVaEpJISaERaSrCHYFLw
  1543. 45.20 s [sydtest-mutation-example] include sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA
  1544. 45.20 s [sydtest-mutation-example] Linked component graph:
  1545. 45.21 s [sydtest-mutation-example] unit sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA
  1546. 45.21 s [sydtest-mutation-example] include base-4.20.2.0-64da
  1547. 45.21 s [sydtest-mutation-example] Example.BoolLib=sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA:Example.BoolLib,Example.ExceptionLib=sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA:Example.ExceptionLib,Example.FunctionExceptionLib=sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA:Example.FunctionExceptionLib,Example.Lib=sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA:Example.Lib,Example.OtherwiseLib=sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA:Example.OtherwiseLib,Example.UntestedLib=sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA:Example.UntestedLib
  1548. 45.21 s [sydtest-mutation-example] unit sydtest-mutation-example-0.0.0.0-8eNP0kEWkFBLuikqb8br1V-sydtest-mutation-example-test
  1549. 45.21 s [sydtest-mutation-example] include base-4.20.2.0-64da
  1550. 45.21 s [sydtest-mutation-example] include sydtest-0.23.0.2-RzVaEpJISaERaSrCHYFLw
  1551. 45.21 s [sydtest-mutation-example] include sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA
  1552. 45.21 s [sydtest-mutation-example] Ready component graph:
  1553. 45.21 s [sydtest-mutation-example] definite sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA
  1554. 45.21 s [sydtest-mutation-example] depends base-4.20.2.0-64da
  1555. 45.21 s [sydtest-mutation-example] definite sydtest-mutation-example-0.0.0.0-8eNP0kEWkFBLuikqb8br1V-sydtest-mutation-example-test
  1556. 45.21 s [sydtest-mutation-example] depends base-4.20.2.0-64da
  1557. 45.21 s [sydtest-mutation-example] depends sydtest-0.23.0.2-RzVaEpJISaERaSrCHYFLw
  1558. 45.21 s [sydtest-mutation-example] depends sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA
  1559. 45.21 s [sydtest-mutation-example] Using Cabal-3.12.1.0 compiled by ghc-9.10
  1560. 45.21 s [sydtest-mutation-example] Using compiler: ghc-9.10.3
  1561. 45.21 s [sydtest-mutation-example] Using install prefix:
  1562. 45.21 s [sydtest-mutation-example] /nix/store/hjq5n20l59q718h8jp46pr9vgah0gaq1-sydtest-mutation-example-0.0.0.0
  1563. 45.21 s [sydtest-mutation-example] Executables installed in:
  1564. 45.21 s [sydtest-mutation-example] /nix/store/hjq5n20l59q718h8jp46pr9vgah0gaq1-sydtest-mutation-example-0.0.0.0/bin
  1565. 45.21 s [sydtest-mutation-example] Libraries installed in:
  1566. 45.21 s [sydtest-mutation-example] /nix/store/hjq5n20l59q718h8jp46pr9vgah0gaq1-sydtest-mutation-example-0.0.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA
  1567. 45.21 s [sydtest-mutation-example] Dynamic Libraries installed in:
  1568. 45.21 s [sydtest-mutation-example] /nix/store/hjq5n20l59q718h8jp46pr9vgah0gaq1-sydtest-mutation-example-0.0.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6
  1569. 45.21 s [sydtest-mutation-example] Private executables installed in:
  1570. 45.21 s [sydtest-mutation-example] /nix/store/hjq5n20l59q718h8jp46pr9vgah0gaq1-sydtest-mutation-example-0.0.0.0/libexec/x86_64-linux-ghc-9.10.3-05f6/sydtest-mutation-example-0.0.0.0
  1571. 45.21 s [sydtest-mutation-example] Data files installed in:
  1572. 45.21 s [sydtest-mutation-example] /nix/store/hjq5n20l59q718h8jp46pr9vgah0gaq1-sydtest-mutation-example-0.0.0.0/share/x86_64-linux-ghc-9.10.3-05f6/sydtest-mutation-example-0.0.0.0
  1573. 45.21 s [sydtest-mutation-example] Documentation installed in:
  1574. 45.22 s [sydtest-mutation-example] /nix/store/hjq5n20l59q718h8jp46pr9vgah0gaq1-sydtest-mutation-example-0.0.0.0/share/doc/x86_64-linux-ghc-9.10.3-05f6/sydtest-mutation-example-0.0.0.0
  1575. 45.22 s [sydtest-mutation-example] Configuration files installed in:
  1576. 45.22 s [sydtest-mutation-example] /nix/store/hjq5n20l59q718h8jp46pr9vgah0gaq1-sydtest-mutation-example-0.0.0.0/etc
  1577. 45.22 s [sydtest-mutation-example] No alex found
  1578. 45.22 s [sydtest-mutation-example] Using ar found on system at:
  1579. 45.22 s [sydtest-mutation-example] /nix/store/iz5lckcsg66r223si2gck7csk2hihj0m-binutils-wrapper-2.44/bin/ar
  1580. 45.22 s [sydtest-mutation-example] No c2hs found
  1581. 45.22 s [sydtest-mutation-example] No cpphs found
  1582. 45.22 s [sydtest-mutation-example] No doctest found
  1583. 45.22 s [sydtest-mutation-example] Using gcc version 14.3.0 given by user at:
  1584. 45.22 s [sydtest-mutation-example] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/gcc
  1585. 45.22 s [sydtest-mutation-example] Using ghc version 9.10.3 found on system at:
  1586. 45.22 s [sydtest-mutation-example] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/ghc
  1587. 45.22 s [sydtest-mutation-example] Using ghc-pkg version 9.10.3 found on system at:
  1588. 45.22 s [sydtest-mutation-example] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/ghc-pkg-9.10.3
  1589. 45.22 s [sydtest-mutation-example] No ghcjs found
  1590. 45.22 s [sydtest-mutation-example] No ghcjs-pkg found
  1591. 45.22 s [sydtest-mutation-example] No greencard found
  1592. 45.22 s [sydtest-mutation-example] Using haddock version 2.31.1 found on system at:
  1593. 45.22 s [sydtest-mutation-example] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/haddock-ghc-9.10.3
  1594. 45.22 s [sydtest-mutation-example] No happy found
  1595. 45.22 s [sydtest-mutation-example] Using haskell-suite found on system at: haskell-suite-dummy-location
  1596. 45.22 s [sydtest-mutation-example] Using haskell-suite-pkg found on system at: haskell-suite-pkg-dummy-location
  1597. 45.22 s [sydtest-mutation-example] No hmake found
  1598. 45.23 s [sydtest-mutation-example] Using hpc version 0.69 found on system at:
  1599. 45.23 s [sydtest-mutation-example] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/hpc-ghc-9.10.3
  1600. 45.23 s [sydtest-mutation-example] Using hsc2hs version 0.68.10 found on system at:
  1601. 45.23 s [sydtest-mutation-example] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/hsc2hs-ghc-9.10.3
  1602. 45.23 s [sydtest-mutation-example] Using hscolour version 1.25 found on system at:
  1603. 45.23 s [sydtest-mutation-example] /nix/store/f755skyzf4jvfx3crwq9mmh3x4lsaz8i-hscolour-1.25/bin/HsColour
  1604. 45.23 s [sydtest-mutation-example] No jhc found
  1605. 45.23 s [sydtest-mutation-example] Using ld found on system at:
  1606. 45.23 s [sydtest-mutation-example] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/ld
  1607. 45.23 s [sydtest-mutation-example] No pkg-config found
  1608. 45.23 s [sydtest-mutation-example] Using runghc version 9.10.3 found on system at:
  1609. 45.23 s [sydtest-mutation-example] /nix/store/s9jd43rkwc2syl9cvgj6f786avy8bgzy-ghc-9.10.3/bin/runghc-9.10.3
  1610. 45.23 s [sydtest-mutation-example] Using strip version 2.44 found on system at:
  1611. 45.23 s [sydtest-mutation-example] /nix/store/8v97ngkcpfzgghwnnr7fsz33p2x22gy9-gcc-wrapper-14.3.0/bin/strip
  1612. 45.23 s [sydtest-mutation-example] Using tar found on system at:
  1613. 45.23 s [sydtest-mutation-example] /nix/store/xl6pd2spjajwcpq09fnmnjv5psqmlmma-gnutar-1.35/bin/tar
  1614. 45.23 s [sydtest-mutation-example] No uhc found
  1615. 46.17 s [sydtest-mutation-example] Phase: buildPhase
  1616. 46.19 s [sydtest-mutation-example] mutation-nix: setting MUTATION_MANIFEST_DIR=/nix/store/33vjd2phw5z88mbxjanaxdg1iwpg23sj-sydtest-mutation-example-0.0.0.0-manifest
  1617. 46.60 s [sydtest-mutation-example] Preprocessing library for sydtest-mutation-example-0.0.0.0...
  1618. 46.60 s [sydtest-mutation-example] Building library for sydtest-mutation-example-0.0.0.0...
  1619. 47.14 s [sydtest-mutation-example] [1 of 7] Compiling Example.BoolLib ( src/Example/BoolLib.hs, dist/build/Example/BoolLib.o, dist/build/Example/BoolLib.dyn_o )
  1620. 47.20 s [sydtest-mutation-example] mutation: instrumenting Example.BoolLib
  1621. 47.20 s [sydtest-mutation-example] added mutation BoolLit at src/Example/BoolLib.hs:18:18-23
  1622. 47.20 s [sydtest-mutation-example] @@ -15,7 +15,7 @@
  1623. 47.20 s [sydtest-mutation-example] --
  1624. 47.20 s [sydtest-mutation-example] -- Mutation sites: BoolLit/ConstBool on the inner False, MaybeOp on Just False.
  1625. 47.20 s [sydtest-mutation-example] wrapFalse :: Maybe Bool
  1626. 47.20 s [sydtest-mutation-example] -wrapFalse = Just False
  1627. 47.20 s [sydtest-mutation-example] +wrapFalse = Just True
  1628. 47.20 s [sydtest-mutation-example]
  1629. 47.20 s [sydtest-mutation-example] -- | Negates a wrapped boolean.
  1630. 47.20 s [sydtest-mutation-example] negateWrapped :: Maybe Bool -> Maybe Bool
  1631. 47.20 s [sydtest-mutation-example] added mutation BoolLit at src/Example/BoolLib.hs:12:17-21
  1632. 47.20 s [sydtest-mutation-example] @@ -9,7 +9,7 @@
  1633. 47.20 s [sydtest-mutation-example] --
  1634. 47.20 s [sydtest-mutation-example] -- Mutation sites: BoolLit/ConstBool on the inner True, MaybeOp on Just True.
  1635. 47.20 s [sydtest-mutation-example] wrapTrue :: Maybe Bool
  1636. 47.20 s [sydtest-mutation-example] -wrapTrue = Just True
  1637. 47.21 s [sydtest-mutation-example] +wrapTrue = Just False
  1638. 47.21 s [sydtest-mutation-example]
  1639. 47.21 s [sydtest-mutation-example] -- | Wraps False in Just.
  1640. 47.21 s [sydtest-mutation-example] --
  1641. 47.21 s [sydtest-mutation-example] added 2 mutations
  1642. 48.06 s [sydtest-mutation-example] [2 of 7] Compiling Example.ExceptionLib ( src/Example/ExceptionLib.hs, dist/build/Example/ExceptionLib.o, dist/build/Example/ExceptionLib.dyn_o )
  1643. 48.16 s [sydtest-mutation-example] [3 of 7] Compiling Example.FunctionExceptionLib ( src/Example/FunctionExceptionLib.hs, dist/build/Example/FunctionExceptionLib.o, dist/build/Example/FunctionExceptionLib.dyn_o )
  1644. 48.17 s [sydtest-mutation-example] mutation: instrumenting Example.FunctionExceptionLib
  1645. 48.17 s [sydtest-mutation-example] added mutation IntLit at src/Example/FunctionExceptionLib.hs:25:32-33
  1646. 48.17 s [sydtest-mutation-example] @@ -22,4 +22,4 @@
  1647. 48.17 s [sydtest-mutation-example] -- @{-# ANN addOneFunctionDisabled ("DisableMutations" :: String) #-}@.
  1648. 48.17 s [sydtest-mutation-example] {-# ANN addOneFunctionDisabled ("DisableMutations" :: String) #-}
  1649. 48.17 s [sydtest-mutation-example] addOneFunctionDisabled :: Int -> Int
  1650. 48.17 s [sydtest-mutation-example] -addOneFunctionDisabled n = n + 1
  1651. 48.17 s [sydtest-mutation-example] +addOneFunctionDisabled n = n + 0
  1652. 48.17 s [sydtest-mutation-example] added mutation IntLit at src/Example/FunctionExceptionLib.hs:25:32-33
  1653. 48.17 s [sydtest-mutation-example] @@ -22,4 +22,4 @@
  1654. 48.17 s [sydtest-mutation-example] -- @{-# ANN addOneFunctionDisabled ("DisableMutations" :: String) #-}@.
  1655. 48.17 s [sydtest-mutation-example] {-# ANN addOneFunctionDisabled ("DisableMutations" :: String) #-}
  1656. 48.17 s [sydtest-mutation-example] addOneFunctionDisabled :: Int -> Int
  1657. 48.17 s [sydtest-mutation-example] -addOneFunctionDisabled n = n + 1
  1658. 48.17 s [sydtest-mutation-example] +addOneFunctionDisabled n = n + -1
  1659. 48.17 s [sydtest-mutation-example] added mutation IntLit at src/Example/FunctionExceptionLib.hs:19:38-39
  1660. 48.17 s [sydtest-mutation-example] @@ -16,7 +16,7 @@
  1661. 48.17 s [sydtest-mutation-example] -- | Both Arith and IntLit mutations disabled on this function.
  1662. 48.17 s [sydtest-mutation-example] {-# ANN addOneArithAndIntLitDisabled ("DisableMutations: Arith, IntLit" :: String) #-}
  1663. 48.17 s [sydtest-mutation-example] addOneArithAndIntLitDisabled :: Int -> Int
  1664. 48.17 s [sydtest-mutation-example] -addOneArithAndIntLitDisabled n = n + 1
  1665. 48.17 s [sydtest-mutation-example] +addOneArithAndIntLitDisabled n = n + 0
  1666. 48.17 s [sydtest-mutation-example]
  1667. 48.17 s [sydtest-mutation-example] -- | All mutations disabled on this function via
  1668. 48.17 s [sydtest-mutation-example] -- @{-# ANN addOneFunctionDisabled ("DisableMutations" :: String) #-}@.
  1669. 48.17 s [sydtest-mutation-example] added mutation IntLit at src/Example/FunctionExceptionLib.hs:19:38-39
  1670. 48.17 s [sydtest-mutation-example] @@ -16,7 +16,7 @@
  1671. 48.17 s [sydtest-mutation-example] -- | Both Arith and IntLit mutations disabled on this function.
  1672. 48.17 s [sydtest-mutation-example] {-# ANN addOneArithAndIntLitDisabled ("DisableMutations: Arith, IntLit" :: String) #-}
  1673. 48.17 s [sydtest-mutation-example] addOneArithAndIntLitDisabled :: Int -> Int
  1674. 48.18 s [sydtest-mutation-example] -addOneArithAndIntLitDisabled n = n + 1
  1675. 48.18 s [sydtest-mutation-example] +addOneArithAndIntLitDisabled n = n + -1
  1676. 48.18 s [sydtest-mutation-example]
  1677. 48.18 s [sydtest-mutation-example] -- | All mutations disabled on this function via
  1678. 48.18 s [sydtest-mutation-example] -- @{-# ANN addOneFunctionDisabled ("DisableMutations" :: String) #-}@.
  1679. 48.18 s [sydtest-mutation-example] added mutation IntLit at src/Example/FunctionExceptionLib.hs:14:29-30
  1680. 48.18 s [sydtest-mutation-example] @@ -11,7 +11,7 @@
  1681. 48.18 s [sydtest-mutation-example] -- IntLit mutations (replacing the literal @1@) still apply.
  1682. 48.18 s [sydtest-mutation-example] {-# ANN addOneArithDisabled ("DisableMutation: Arith" :: String) #-}
  1683. 48.18 s [sydtest-mutation-example] addOneArithDisabled :: Int -> Int
  1684. 48.18 s [sydtest-mutation-example] -addOneArithDisabled n = n + 1
  1685. 48.18 s [sydtest-mutation-example] +addOneArithDisabled n = n + 0
  1686. 48.18 s [sydtest-mutation-example]
  1687. 48.18 s [sydtest-mutation-example] -- | Both Arith and IntLit mutations disabled on this function.
  1688. 48.18 s [sydtest-mutation-example] {-# ANN addOneArithAndIntLitDisabled ("DisableMutations: Arith, IntLit" :: String) #-}
  1689. 48.18 s [sydtest-mutation-example] added mutation IntLit at src/Example/FunctionExceptionLib.hs:14:29-30
  1690. 48.18 s [sydtest-mutation-example] @@ -11,7 +11,7 @@
  1691. 48.18 s [sydtest-mutation-example] -- IntLit mutations (replacing the literal @1@) still apply.
  1692. 48.18 s [sydtest-mutation-example] {-# ANN addOneArithDisabled ("DisableMutation: Arith" :: String) #-}
  1693. 48.18 s [sydtest-mutation-example] addOneArithDisabled :: Int -> Int
  1694. 48.18 s [sydtest-mutation-example] -addOneArithDisabled n = n + 1
  1695. 48.18 s [sydtest-mutation-example] +addOneArithDisabled n = n + -1
  1696. 48.18 s [sydtest-mutation-example]
  1697. 48.18 s [sydtest-mutation-example] -- | Both Arith and IntLit mutations disabled on this function.
  1698. 48.18 s [sydtest-mutation-example] {-# ANN addOneArithAndIntLitDisabled ("DisableMutations: Arith, IntLit" :: String) #-}
  1699. 48.18 s [sydtest-mutation-example] added 6 mutations
  1700. 48.46 s [sydtest-mutation-example] [4 of 7] Compiling Example.Lib ( src/Example/Lib.hs, dist/build/Example/Lib.o, dist/build/Example/Lib.dyn_o )
  1701. 48.46 s [sydtest-mutation-example] mutation: instrumenting Example.Lib
  1702. 48.46 s [sydtest-mutation-example] added mutation IntLit at src/Example/Lib.hs:8:16-17
  1703. 48.46 s [sydtest-mutation-example] @@ -5,4 +5,4 @@
  1704. 48.46 s [sydtest-mutation-example] -- The literal '1' here is a mutation site: the plugin will also compile a
  1705. 48.46 s [sydtest-mutation-example] -- version where this returns @n + 0@ instead of @n + 1@.
  1706. 48.46 s [sydtest-mutation-example] addOne :: Int -> Int
  1707. 48.46 s [sydtest-mutation-example] -addOne n = n + 1
  1708. 48.46 s [sydtest-mutation-example] +addOne n = n + 0
  1709. 48.46 s [sydtest-mutation-example] added mutation IntLit at src/Example/Lib.hs:8:16-17
  1710. 48.46 s [sydtest-mutation-example] @@ -5,4 +5,4 @@
  1711. 48.46 s [sydtest-mutation-example] -- The literal '1' here is a mutation site: the plugin will also compile a
  1712. 48.46 s [sydtest-mutation-example] -- version where this returns @n + 0@ instead of @n + 1@.
  1713. 48.46 s [sydtest-mutation-example] addOne :: Int -> Int
  1714. 48.46 s [sydtest-mutation-example] -addOne n = n + 1
  1715. 48.46 s [sydtest-mutation-example] +addOne n = n + -1
  1716. 48.46 s [sydtest-mutation-example] added 2 mutations
  1717. 48.56 s [sydtest-mutation-example] [5 of 7] Compiling Example.OtherwiseLib ( src/Example/OtherwiseLib.hs, dist/build/Example/OtherwiseLib.o, dist/build/Example/OtherwiseLib.dyn_o )
  1718. 48.57 s [sydtest-mutation-example] mutation: instrumenting Example.OtherwiseLib
  1719. 48.57 s [sydtest-mutation-example] added mutation IntLit at src/Example/OtherwiseLib.hs:12:9-10
  1720. 48.57 s [sydtest-mutation-example] @@ -9,6 +9,6 @@
  1721. 48.57 s [sydtest-mutation-example] -- (otherwise = True, so @otherwise -> True@ is a semantic no-op).
  1722. 48.57 s [sydtest-mutation-example] classify :: Int -> String
  1723. 48.57 s [sydtest-mutation-example] classify n
  1724. 48.57 s [sydtest-mutation-example] - | n < 0 = "negative"
  1725. 48.57 s [sydtest-mutation-example] + | n < 1 = "negative"
  1726. 48.57 s [sydtest-mutation-example] | n == 0 = "zero"
  1727. 48.57 s [sydtest-mutation-example] | otherwise = "positive"
  1728. 48.57 s [sydtest-mutation-example] added mutation ConstBool at src/Example/OtherwiseLib.hs:12:5-10
  1729. 48.57 s [sydtest-mutation-example] @@ -9,6 +9,6 @@
  1730. 48.57 s [sydtest-mutation-example] -- (otherwise = True, so @otherwise -> True@ is a semantic no-op).
  1731. 48.57 s [sydtest-mutation-example] classify :: Int -> String
  1732. 48.57 s [sydtest-mutation-example] classify n
  1733. 48.57 s [sydtest-mutation-example] - | n < 0 = "negative"
  1734. 48.57 s [sydtest-mutation-example] + | True = "negative"
  1735. 48.57 s [sydtest-mutation-example] | n == 0 = "zero"
  1736. 48.57 s [sydtest-mutation-example] | otherwise = "positive"
  1737. 48.57 s [sydtest-mutation-example] added mutation Negate at src/Example/OtherwiseLib.hs:12:5-10
  1738. 48.57 s [sydtest-mutation-example] @@ -9,6 +9,6 @@
  1739. 48.57 s [sydtest-mutation-example] -- (otherwise = True, so @otherwise -> True@ is a semantic no-op).
  1740. 48.57 s [sydtest-mutation-example] classify :: Int -> String
  1741. 48.57 s [sydtest-mutation-example] classify n
  1742. 48.57 s [sydtest-mutation-example] - | n < 0 = "negative"
  1743. 48.57 s [sydtest-mutation-example] + | not (n < 0) = "negative"
  1744. 48.57 s [sydtest-mutation-example] | n == 0 = "zero"
  1745. 48.57 s [sydtest-mutation-example] | otherwise = "positive"
  1746. 48.57 s [sydtest-mutation-example] added mutation IntLit at src/Example/OtherwiseLib.hs:13:10-11
  1747. 48.57 s [sydtest-mutation-example] @@ -10,5 +10,5 @@
  1748. 48.57 s [sydtest-mutation-example] classify :: Int -> String
  1749. 48.57 s [sydtest-mutation-example] classify n
  1750. 48.57 s [sydtest-mutation-example] | n < 0 = "negative"
  1751. 48.57 s [sydtest-mutation-example] - | n == 0 = "zero"
  1752. 48.57 s [sydtest-mutation-example] + | n == 1 = "zero"
  1753. 48.57 s [sydtest-mutation-example] | otherwise = "positive"
  1754. 48.57 s [sydtest-mutation-example] added mutation ConstBool at src/Example/OtherwiseLib.hs:13:5-11
  1755. 48.57 s [sydtest-mutation-example] @@ -10,5 +10,5 @@
  1756. 48.57 s [sydtest-mutation-example] classify :: Int -> String
  1757. 48.57 s [sydtest-mutation-example] classify n
  1758. 48.57 s [sydtest-mutation-example] | n < 0 = "negative"
  1759. 48.57 s [sydtest-mutation-example] - | n == 0 = "zero"
  1760. 48.57 s [sydtest-mutation-example] + | True = "zero"
  1761. 48.57 s [sydtest-mutation-example] | otherwise = "positive"
  1762. 48.57 s [sydtest-mutation-example] added mutation Negate at src/Example/OtherwiseLib.hs:13:5-11
  1763. 48.57 s [sydtest-mutation-example] @@ -10,5 +10,5 @@
  1764. 48.58 s [sydtest-mutation-example] classify :: Int -> String
  1765. 48.58 s [sydtest-mutation-example] classify n
  1766. 48.58 s [sydtest-mutation-example] | n < 0 = "negative"
  1767. 48.58 s [sydtest-mutation-example] - | n == 0 = "zero"
  1768. 48.58 s [sydtest-mutation-example] + | not (n == 0) = "zero"
  1769. 48.58 s [sydtest-mutation-example] | otherwise = "positive"
  1770. 48.58 s [sydtest-mutation-example] added 6 mutations
  1771. 48.71 s [sydtest-mutation-example] [6 of 7] Compiling Example.UntestedLib ( src/Example/UntestedLib.hs, dist/build/Example/UntestedLib.o, dist/build/Example/UntestedLib.dyn_o )
  1772. 48.71 s [sydtest-mutation-example] mutation: instrumenting Example.UntestedLib
  1773. 48.71 s [sydtest-mutation-example] added mutation IntLit at src/Example/UntestedLib.hs:8:24-25
  1774. 48.71 s [sydtest-mutation-example] @@ -5,4 +5,4 @@
  1775. 48.71 s [sydtest-mutation-example] -- like: the mutation report will show @IntLit1To0@ for this module surviving
  1776. 48.71 s [sydtest-mutation-example] -- because no test exercises it.
  1777. 48.71 s [sydtest-mutation-example] addOneUntested :: Int -> Int
  1778. 48.71 s [sydtest-mutation-example] -addOneUntested n = n + 1
  1779. 48.71 s [sydtest-mutation-example] +addOneUntested n = n + 0
  1780. 48.71 s [sydtest-mutation-example] added mutation IntLit at src/Example/UntestedLib.hs:8:24-25
  1781. 48.71 s [sydtest-mutation-example] @@ -5,4 +5,4 @@
  1782. 48.71 s [sydtest-mutation-example] -- like: the mutation report will show @IntLit1To0@ for this module surviving
  1783. 48.71 s [sydtest-mutation-example] -- because no test exercises it.
  1784. 48.71 s [sydtest-mutation-example] addOneUntested :: Int -> Int
  1785. 48.71 s [sydtest-mutation-example] -addOneUntested n = n + 1
  1786. 48.71 s [sydtest-mutation-example] +addOneUntested n = n + -1
  1787. 48.71 s [sydtest-mutation-example] added 2 mutations
  1788. 48.78 s [sydtest-mutation-example] [7 of 7] Compiling Paths_sydtest_mutation_example ( dist/build/autogen/Paths_sydtest_mutation_example.hs, dist/build/Paths_sydtest_mutation_example.o, dist/build/Paths_sydtest_mutation_example.dyn_o )
  1789. 49.59 s [sydtest-mutation-example] [1 of 7] Compiling Example.BoolLib ( src/Example/BoolLib.hs, dist/build/Example/BoolLib.p_o )
  1790. 49.70 s [sydtest-mutation-example] mutation: instrumenting Example.BoolLib
  1791. 49.70 s [sydtest-mutation-example] added mutation BoolLit at src/Example/BoolLib.hs:18:18-23
  1792. 49.70 s [sydtest-mutation-example] @@ -15,7 +15,7 @@
  1793. 49.70 s [sydtest-mutation-example] --
  1794. 49.70 s [sydtest-mutation-example] -- Mutation sites: BoolLit/ConstBool on the inner False, MaybeOp on Just False.
  1795. 49.70 s [sydtest-mutation-example] wrapFalse :: Maybe Bool
  1796. 49.70 s [sydtest-mutation-example] -wrapFalse = Just False
  1797. 49.70 s [sydtest-mutation-example] +wrapFalse = Just True
  1798. 49.70 s [sydtest-mutation-example]
  1799. 49.71 s [sydtest-mutation-example] -- | Negates a wrapped boolean.
  1800. 49.71 s [sydtest-mutation-example] negateWrapped :: Maybe Bool -> Maybe Bool
  1801. 49.71 s [sydtest-mutation-example] added mutation BoolLit at src/Example/BoolLib.hs:12:17-21
  1802. 49.71 s [sydtest-mutation-example] @@ -9,7 +9,7 @@
  1803. 49.71 s [sydtest-mutation-example] --
  1804. 49.71 s [sydtest-mutation-example] -- Mutation sites: BoolLit/ConstBool on the inner True, MaybeOp on Just True.
  1805. 49.71 s [sydtest-mutation-example] wrapTrue :: Maybe Bool
  1806. 49.71 s [sydtest-mutation-example] -wrapTrue = Just True
  1807. 49.71 s [sydtest-mutation-example] +wrapTrue = Just False
  1808. 49.71 s [sydtest-mutation-example]
  1809. 49.71 s [sydtest-mutation-example] -- | Wraps False in Just.
  1810. 49.71 s [sydtest-mutation-example] --
  1811. 49.71 s [sydtest-mutation-example] added 2 mutations
  1812. 50.80 s [sydtest-mutation-example] [2 of 7] Compiling Example.ExceptionLib ( src/Example/ExceptionLib.hs, dist/build/Example/ExceptionLib.p_o )
  1813. 51.10 s [sydtest-mutation-example] [3 of 7] Compiling Example.FunctionExceptionLib ( src/Example/FunctionExceptionLib.hs, dist/build/Example/FunctionExceptionLib.p_o )
  1814. 51.15 s [sydtest-mutation-example] mutation: instrumenting Example.FunctionExceptionLib
  1815. 51.15 s [sydtest-mutation-example] added mutation IntLit at src/Example/FunctionExceptionLib.hs:25:32-33
  1816. 51.15 s [sydtest-mutation-example] @@ -22,4 +22,4 @@
  1817. 51.15 s [sydtest-mutation-example] -- @{-# ANN addOneFunctionDisabled ("DisableMutations" :: String) #-}@.
  1818. 51.15 s [sydtest-mutation-example] {-# ANN addOneFunctionDisabled ("DisableMutations" :: String) #-}
  1819. 51.15 s [sydtest-mutation-example] addOneFunctionDisabled :: Int -> Int
  1820. 51.15 s [sydtest-mutation-example] -addOneFunctionDisabled n = n + 1
  1821. 51.15 s [sydtest-mutation-example] +addOneFunctionDisabled n = n + 0
  1822. 51.15 s [sydtest-mutation-example] added mutation IntLit at src/Example/FunctionExceptionLib.hs:25:32-33
  1823. 51.15 s [sydtest-mutation-example] @@ -22,4 +22,4 @@
  1824. 51.15 s [sydtest-mutation-example] -- @{-# ANN addOneFunctionDisabled ("DisableMutations" :: String) #-}@.
  1825. 51.15 s [sydtest-mutation-example] {-# ANN addOneFunctionDisabled ("DisableMutations" :: String) #-}
  1826. 51.15 s [sydtest-mutation-example] addOneFunctionDisabled :: Int -> Int
  1827. 51.15 s [sydtest-mutation-example] -addOneFunctionDisabled n = n + 1
  1828. 51.15 s [sydtest-mutation-example] +addOneFunctionDisabled n = n + -1
  1829. 51.15 s [sydtest-mutation-example] added mutation IntLit at src/Example/FunctionExceptionLib.hs:19:38-39
  1830. 51.15 s [sydtest-mutation-example] @@ -16,7 +16,7 @@
  1831. 51.15 s [sydtest-mutation-example] -- | Both Arith and IntLit mutations disabled on this function.
  1832. 51.16 s [sydtest-mutation-example] {-# ANN addOneArithAndIntLitDisabled ("DisableMutations: Arith, IntLit" :: String) #-}
  1833. 51.16 s [sydtest-mutation-example] addOneArithAndIntLitDisabled :: Int -> Int
  1834. 51.16 s [sydtest-mutation-example] -addOneArithAndIntLitDisabled n = n + 1
  1835. 51.16 s [sydtest-mutation-example] +addOneArithAndIntLitDisabled n = n + 0
  1836. 51.16 s [sydtest-mutation-example]
  1837. 51.16 s [sydtest-mutation-example] -- | All mutations disabled on this function via
  1838. 51.16 s [sydtest-mutation-example] -- @{-# ANN addOneFunctionDisabled ("DisableMutations" :: String) #-}@.
  1839. 51.16 s [sydtest-mutation-example] added mutation IntLit at src/Example/FunctionExceptionLib.hs:19:38-39
  1840. 51.16 s [sydtest-mutation-example] @@ -16,7 +16,7 @@
  1841. 51.16 s [sydtest-mutation-example] -- | Both Arith and IntLit mutations disabled on this function.
  1842. 51.16 s [sydtest-mutation-example] {-# ANN addOneArithAndIntLitDisabled ("DisableMutations: Arith, IntLit" :: String) #-}
  1843. 51.16 s [sydtest-mutation-example] addOneArithAndIntLitDisabled :: Int -> Int
  1844. 51.16 s [sydtest-mutation-example] -addOneArithAndIntLitDisabled n = n + 1
  1845. 51.16 s [sydtest-mutation-example] +addOneArithAndIntLitDisabled n = n + -1
  1846. 51.16 s [sydtest-mutation-example]
  1847. 51.16 s [sydtest-mutation-example] -- | All mutations disabled on this function via
  1848. 51.16 s [sydtest-mutation-example] -- @{-# ANN addOneFunctionDisabled ("DisableMutations" :: String) #-}@.
  1849. 51.16 s [sydtest-mutation-example] added mutation IntLit at src/Example/FunctionExceptionLib.hs:14:29-30
  1850. 51.16 s [sydtest-mutation-example] @@ -11,7 +11,7 @@
  1851. 51.16 s [sydtest-mutation-example] -- IntLit mutations (replacing the literal @1@) still apply.
  1852. 51.16 s [sydtest-mutation-example] {-# ANN addOneArithDisabled ("DisableMutation: Arith" :: String) #-}
  1853. 51.16 s [sydtest-mutation-example] addOneArithDisabled :: Int -> Int
  1854. 51.16 s [sydtest-mutation-example] -addOneArithDisabled n = n + 1
  1855. 51.16 s [sydtest-mutation-example] +addOneArithDisabled n = n + 0
  1856. 51.16 s [sydtest-mutation-example]
  1857. 51.16 s [sydtest-mutation-example] -- | Both Arith and IntLit mutations disabled on this function.
  1858. 51.16 s [sydtest-mutation-example] {-# ANN addOneArithAndIntLitDisabled ("DisableMutations: Arith, IntLit" :: String) #-}
  1859. 51.16 s [sydtest-mutation-example] added mutation IntLit at src/Example/FunctionExceptionLib.hs:14:29-30
  1860. 51.16 s [sydtest-mutation-example] @@ -11,7 +11,7 @@
  1861. 51.16 s [sydtest-mutation-example] -- IntLit mutations (replacing the literal @1@) still apply.
  1862. 51.16 s [sydtest-mutation-example] {-# ANN addOneArithDisabled ("DisableMutation: Arith" :: String) #-}
  1863. 51.16 s [sydtest-mutation-example] addOneArithDisabled :: Int -> Int
  1864. 51.16 s [sydtest-mutation-example] -addOneArithDisabled n = n + 1
  1865. 51.16 s [sydtest-mutation-example] +addOneArithDisabled n = n + -1
  1866. 51.16 s [sydtest-mutation-example]
  1867. 51.17 s [sydtest-mutation-example] -- | Both Arith and IntLit mutations disabled on this function.
  1868. 51.17 s [sydtest-mutation-example] {-# ANN addOneArithAndIntLitDisabled ("DisableMutations: Arith, IntLit" :: String) #-}
  1869. 51.17 s [sydtest-mutation-example] added 6 mutations
  1870. 51.53 s [sydtest-mutation-example] [4 of 7] Compiling Example.Lib ( src/Example/Lib.hs, dist/build/Example/Lib.p_o )
  1871. 51.53 s [sydtest-mutation-example] mutation: instrumenting Example.Lib
  1872. 51.53 s [sydtest-mutation-example] added mutation IntLit at src/Example/Lib.hs:8:16-17
  1873. 51.53 s [sydtest-mutation-example] @@ -5,4 +5,4 @@
  1874. 51.53 s [sydtest-mutation-example] -- The literal '1' here is a mutation site: the plugin will also compile a
  1875. 51.53 s [sydtest-mutation-example] -- version where this returns @n + 0@ instead of @n + 1@.
  1876. 51.53 s [sydtest-mutation-example] addOne :: Int -> Int
  1877. 51.53 s [sydtest-mutation-example] -addOne n = n + 1
  1878. 51.54 s [sydtest-mutation-example] +addOne n = n + 0
  1879. 51.54 s [sydtest-mutation-example] added mutation IntLit at src/Example/Lib.hs:8:16-17
  1880. 51.54 s [sydtest-mutation-example] @@ -5,4 +5,4 @@
  1881. 51.54 s [sydtest-mutation-example] -- The literal '1' here is a mutation site: the plugin will also compile a
  1882. 51.54 s [sydtest-mutation-example] -- version where this returns @n + 0@ instead of @n + 1@.
  1883. 51.54 s [sydtest-mutation-example] addOne :: Int -> Int
  1884. 51.54 s [sydtest-mutation-example] -addOne n = n + 1
  1885. 51.54 s [sydtest-mutation-example] +addOne n = n + -1
  1886. 51.54 s [sydtest-mutation-example] added 2 mutations
  1887. 51.91 s [sydtest-mutation-example] [5 of 7] Compiling Example.OtherwiseLib ( src/Example/OtherwiseLib.hs, dist/build/Example/OtherwiseLib.p_o )
  1888. 51.91 s [sydtest-mutation-example] mutation: instrumenting Example.OtherwiseLib
  1889. 51.92 s [sydtest-mutation-example] added mutation IntLit at src/Example/OtherwiseLib.hs:12:9-10
  1890. 51.92 s [sydtest-mutation-example] @@ -9,6 +9,6 @@
  1891. 51.92 s [sydtest-mutation-example] -- (otherwise = True, so @otherwise -> True@ is a semantic no-op).
  1892. 51.92 s [sydtest-mutation-example] classify :: Int -> String
  1893. 51.92 s [sydtest-mutation-example] classify n
  1894. 51.92 s [sydtest-mutation-example] - | n < 0 = "negative"
  1895. 51.92 s [sydtest-mutation-example] + | n < 1 = "negative"
  1896. 51.92 s [sydtest-mutation-example] | n == 0 = "zero"
  1897. 51.92 s [sydtest-mutation-example] | otherwise = "positive"
  1898. 51.92 s [sydtest-mutation-example] added mutation ConstBool at src/Example/OtherwiseLib.hs:12:5-10
  1899. 51.92 s [sydtest-mutation-example] @@ -9,6 +9,6 @@
  1900. 51.92 s [sydtest-mutation-example] -- (otherwise = True, so @otherwise -> True@ is a semantic no-op).
  1901. 51.93 s [sydtest-mutation-example] classify :: Int -> String
  1902. 51.93 s [sydtest-mutation-example] classify n
  1903. 51.93 s [sydtest-mutation-example] - | n < 0 = "negative"
  1904. 51.93 s [sydtest-mutation-example] + | True = "negative"
  1905. 51.93 s [sydtest-mutation-example] | n == 0 = "zero"
  1906. 51.93 s [sydtest-mutation-example] | otherwise = "positive"
  1907. 51.93 s [sydtest-mutation-example] added mutation Negate at src/Example/OtherwiseLib.hs:12:5-10
  1908. 51.93 s [sydtest-mutation-example] @@ -9,6 +9,6 @@
  1909. 51.93 s [sydtest-mutation-example] -- (otherwise = True, so @otherwise -> True@ is a semantic no-op).
  1910. 51.93 s [sydtest-mutation-example] classify :: Int -> String
  1911. 51.93 s [sydtest-mutation-example] classify n
  1912. 51.93 s [sydtest-mutation-example] - | n < 0 = "negative"
  1913. 51.93 s [sydtest-mutation-example] + | not (n < 0) = "negative"
  1914. 51.93 s [sydtest-mutation-example] | n == 0 = "zero"
  1915. 51.93 s [sydtest-mutation-example] | otherwise = "positive"
  1916. 51.93 s [sydtest-mutation-example] added mutation IntLit at src/Example/OtherwiseLib.hs:13:10-11
  1917. 51.93 s [sydtest-mutation-example] @@ -10,5 +10,5 @@
  1918. 51.93 s [sydtest-mutation-example] classify :: Int -> String
  1919. 51.93 s [sydtest-mutation-example] classify n
  1920. 51.93 s [sydtest-mutation-example] | n < 0 = "negative"
  1921. 51.93 s [sydtest-mutation-example] - | n == 0 = "zero"
  1922. 51.93 s [sydtest-mutation-example] + | n == 1 = "zero"
  1923. 51.93 s [sydtest-mutation-example] | otherwise = "positive"
  1924. 51.93 s [sydtest-mutation-example] added mutation ConstBool at src/Example/OtherwiseLib.hs:13:5-11
  1925. 51.93 s [sydtest-mutation-example] @@ -10,5 +10,5 @@
  1926. 51.93 s [sydtest-mutation-example] classify :: Int -> String
  1927. 51.93 s [sydtest-mutation-example] classify n
  1928. 51.93 s [sydtest-mutation-example] | n < 0 = "negative"
  1929. 51.93 s [sydtest-mutation-example] - | n == 0 = "zero"
  1930. 51.93 s [sydtest-mutation-example] + | True = "zero"
  1931. 51.93 s [sydtest-mutation-example] | otherwise = "positive"
  1932. 51.93 s [sydtest-mutation-example] added mutation Negate at src/Example/OtherwiseLib.hs:13:5-11
  1933. 51.93 s [sydtest-mutation-example] @@ -10,5 +10,5 @@
  1934. 51.93 s [sydtest-mutation-example] classify :: Int -> String
  1935. 51.94 s [sydtest-mutation-example] classify n
  1936. 51.94 s [sydtest-mutation-example] | n < 0 = "negative"
  1937. 51.94 s [sydtest-mutation-example] - | n == 0 = "zero"
  1938. 51.94 s [sydtest-mutation-example] + | not (n == 0) = "zero"
  1939. 51.94 s [sydtest-mutation-example] | otherwise = "positive"
  1940. 51.94 s [sydtest-mutation-example] added 6 mutations
  1941. 52.45 s [sydtest-mutation-example] [6 of 7] Compiling Example.UntestedLib ( src/Example/UntestedLib.hs, dist/build/Example/UntestedLib.p_o )
  1942. 52.46 s [sydtest-mutation-example] mutation: instrumenting Example.UntestedLib
  1943. 52.46 s [sydtest-mutation-example] added mutation IntLit at src/Example/UntestedLib.hs:8:24-25
  1944. 52.46 s [sydtest-mutation-example] @@ -5,4 +5,4 @@
  1945. 52.46 s [sydtest-mutation-example] -- like: the mutation report will show @IntLit1To0@ for this module surviving
  1946. 52.46 s [sydtest-mutation-example] -- because no test exercises it.
  1947. 52.46 s [sydtest-mutation-example] addOneUntested :: Int -> Int
  1948. 52.46 s [sydtest-mutation-example] -addOneUntested n = n + 1
  1949. 52.46 s [sydtest-mutation-example] +addOneUntested n = n + 0
  1950. 52.46 s [sydtest-mutation-example] added mutation IntLit at src/Example/UntestedLib.hs:8:24-25
  1951. 52.46 s [sydtest-mutation-example] @@ -5,4 +5,4 @@
  1952. 52.46 s [sydtest-mutation-example] -- like: the mutation report will show @IntLit1To0@ for this module surviving
  1953. 52.46 s [sydtest-mutation-example] -- because no test exercises it.
  1954. 52.46 s [sydtest-mutation-example] addOneUntested :: Int -> Int
  1955. 52.46 s [sydtest-mutation-example] -addOneUntested n = n + 1
  1956. 52.46 s [sydtest-mutation-example] +addOneUntested n = n + -1
  1957. 52.46 s [sydtest-mutation-example] added 2 mutations
  1958. 52.81 s [sydtest-mutation-example] [7 of 7] Compiling Paths_sydtest_mutation_example ( dist/build/autogen/Paths_sydtest_mutation_example.hs, dist/build/Paths_sydtest_mutation_example.p_o )
  1959. 53.91 s [sydtest-mutation-example] Warning: ignoring unrecognised input `dist/build/Example/BoolLib.dyn_o'
  1960. 53.91 s [sydtest-mutation-example] Warning: ignoring unrecognised input `dist/build/Example/ExceptionLib.dyn_o'
  1961. 53.91 s [sydtest-mutation-example] Warning: ignoring unrecognised input `dist/build/Example/FunctionExceptionLib.dyn_o'
  1962. 53.91 s [sydtest-mutation-example] Warning: ignoring unrecognised input `dist/build/Example/Lib.dyn_o'
  1963. 53.91 s [sydtest-mutation-example] Warning: ignoring unrecognised input `dist/build/Example/OtherwiseLib.dyn_o'
  1964. 53.91 s [sydtest-mutation-example] Warning: ignoring unrecognised input `dist/build/Example/UntestedLib.dyn_o'
  1965. 53.91 s [sydtest-mutation-example] Warning: ignoring unrecognised input `dist/build/Paths_sydtest_mutation_example.dyn_o'
  1966. 56.25 s [sydtest-mutation-example] Preprocessing test suite 'sydtest-mutation-example-test' for sydtest-mutation-example-0.0.0.0...
  1967. 56.31 s [sydtest-mutation-example] Building test suite 'sydtest-mutation-example-test' for sydtest-mutation-example-0.0.0.0...
  1968. 56.96 s [sydtest-mutation-example] [1 of 6] Compiling Example.BoolLibSpec ( test/Example/BoolLibSpec.hs, dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test-tmp/Example/BoolLibSpec.o )
  1969. 57.15 s [sydtest-mutation-example] mutation: instrumenting Example.BoolLibSpec
  1970. 57.16 s [sydtest-mutation-example] added mutation BoolLit at test/Example/BoolLibSpec.hs:10:32-36
  1971. 57.16 s [sydtest-mutation-example] @@ -7,7 +7,7 @@
  1972. 57.16 s [sydtest-mutation-example] spec = do
  1973. 57.16 s [sydtest-mutation-example] describe "wrapTrue" $
  1974. 57.16 s [sydtest-mutation-example] it "is Just True" $
  1975. 57.16 s [sydtest-mutation-example] - wrapTrue `shouldBe` Just True
  1976. 57.16 s [sydtest-mutation-example] + wrapTrue `shouldBe` Just False
  1977. 57.16 s [sydtest-mutation-example]
  1978. 57.16 s [sydtest-mutation-example] describe "wrapFalse" $
  1979. 57.16 s [sydtest-mutation-example] it "is Just False" $
  1980. 57.16 s [sydtest-mutation-example] added mutation BoolLit at test/Example/BoolLibSpec.hs:14:33-38
  1981. 57.16 s [sydtest-mutation-example] @@ -11,7 +11,7 @@
  1982. 57.16 s [sydtest-mutation-example]
  1983. 57.16 s [sydtest-mutation-example] describe "wrapFalse" $
  1984. 57.16 s [sydtest-mutation-example] it "is Just False" $
  1985. 57.16 s [sydtest-mutation-example] - wrapFalse `shouldBe` Just False
  1986. 57.16 s [sydtest-mutation-example] + wrapFalse `shouldBe` Just True
  1987. 57.16 s [sydtest-mutation-example]
  1988. 57.16 s [sydtest-mutation-example] describe "negateWrapped" $ do
  1989. 57.16 s [sydtest-mutation-example] it "negates Just True to Just False" $
  1990. 57.16 s [sydtest-mutation-example] added mutation BoolLit at test/Example/BoolLibSpec.hs:18:27-31
  1991. 57.16 s [sydtest-mutation-example] @@ -15,7 +15,7 @@
  1992. 57.16 s [sydtest-mutation-example]
  1993. 57.16 s [sydtest-mutation-example] describe "negateWrapped" $ do
  1994. 57.16 s [sydtest-mutation-example] it "negates Just True to Just False" $
  1995. 57.16 s [sydtest-mutation-example] - negateWrapped (Just True) `shouldBe` Just False
  1996. 57.17 s [sydtest-mutation-example] + negateWrapped (Just False) `shouldBe` Just False
  1997. 57.17 s [sydtest-mutation-example] it "negates Just False to Just True" $
  1998. 57.17 s [sydtest-mutation-example] negateWrapped (Just False) `shouldBe` Just True
  1999. 57.17 s [sydtest-mutation-example] it "leaves Nothing as Nothing" $
  2000. 57.17 s [sydtest-mutation-example] added mutation BoolLit at test/Example/BoolLibSpec.hs:18:49-54
  2001. 57.17 s [sydtest-mutation-example] @@ -15,7 +15,7 @@
  2002. 57.17 s [sydtest-mutation-example]
  2003. 57.17 s [sydtest-mutation-example] describe "negateWrapped" $ do
  2004. 57.17 s [sydtest-mutation-example] it "negates Just True to Just False" $
  2005. 57.17 s [sydtest-mutation-example] - negateWrapped (Just True) `shouldBe` Just False
  2006. 57.17 s [sydtest-mutation-example] + negateWrapped (Just True) `shouldBe` Just True
  2007. 57.17 s [sydtest-mutation-example] it "negates Just False to Just True" $
  2008. 57.17 s [sydtest-mutation-example] negateWrapped (Just False) `shouldBe` Just True
  2009. 57.17 s [sydtest-mutation-example] it "leaves Nothing as Nothing" $
  2010. 57.17 s [sydtest-mutation-example] added mutation BoolLit at test/Example/BoolLibSpec.hs:20:27-32
  2011. 57.17 s [sydtest-mutation-example] @@ -17,6 +17,6 @@
  2012. 57.17 s [sydtest-mutation-example] it "negates Just True to Just False" $
  2013. 57.17 s [sydtest-mutation-example] negateWrapped (Just True) `shouldBe` Just False
  2014. 57.17 s [sydtest-mutation-example] it "negates Just False to Just True" $
  2015. 57.17 s [sydtest-mutation-example] - negateWrapped (Just False) `shouldBe` Just True
  2016. 57.17 s [sydtest-mutation-example] + negateWrapped (Just True) `shouldBe` Just True
  2017. 57.17 s [sydtest-mutation-example] it "leaves Nothing as Nothing" $
  2018. 57.17 s [sydtest-mutation-example] negateWrapped Nothing `shouldBe` Nothing
  2019. 57.17 s [sydtest-mutation-example] added mutation BoolLit at test/Example/BoolLibSpec.hs:20:50-54
  2020. 57.17 s [sydtest-mutation-example] @@ -17,6 +17,6 @@
  2021. 57.17 s [sydtest-mutation-example] it "negates Just True to Just False" $
  2022. 57.17 s [sydtest-mutation-example] negateWrapped (Just True) `shouldBe` Just False
  2023. 57.17 s [sydtest-mutation-example] it "negates Just False to Just True" $
  2024. 57.17 s [sydtest-mutation-example] - negateWrapped (Just False) `shouldBe` Just True
  2025. 57.17 s [sydtest-mutation-example] + negateWrapped (Just False) `shouldBe` Just False
  2026. 57.17 s [sydtest-mutation-example] it "leaves Nothing as Nothing" $
  2027. 57.17 s [sydtest-mutation-example] negateWrapped Nothing `shouldBe` Nothing
  2028. 57.17 s [sydtest-mutation-example] added 6 mutations
  2029. 58.26 s [sydtest-mutation-example] [2 of 6] Compiling Example.LibSpec ( test/Example/LibSpec.hs, dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test-tmp/Example/LibSpec.o )
  2030. 58.27 s [sydtest-mutation-example] mutation: instrumenting Example.LibSpec
  2031. 58.27 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:10:14-15
  2032. 58.27 s [sydtest-mutation-example] @@ -7,6 +7,6 @@
  2033. 58.27 s [sydtest-mutation-example] spec = do
  2034. 58.27 s [sydtest-mutation-example] describe "addOne" $ do
  2035. 58.27 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2036. 58.27 s [sydtest-mutation-example] - addOne 1 `shouldBe` 2
  2037. 58.27 s [sydtest-mutation-example] + addOne 0 `shouldBe` 2
  2038. 58.27 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2039. 58.27 s [sydtest-mutation-example] addOne 5 `shouldBe` 6
  2040. 58.27 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:10:14-15
  2041. 58.28 s [sydtest-mutation-example] @@ -7,6 +7,6 @@
  2042. 58.28 s [sydtest-mutation-example] spec = do
  2043. 58.28 s [sydtest-mutation-example] describe "addOne" $ do
  2044. 58.28 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2045. 58.28 s [sydtest-mutation-example] - addOne 1 `shouldBe` 2
  2046. 58.28 s [sydtest-mutation-example] + addOne -1 `shouldBe` 2
  2047. 58.28 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2048. 58.28 s [sydtest-mutation-example] addOne 5 `shouldBe` 6
  2049. 58.28 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:10:27-28
  2050. 58.28 s [sydtest-mutation-example] @@ -7,6 +7,6 @@
  2051. 58.28 s [sydtest-mutation-example] spec = do
  2052. 58.28 s [sydtest-mutation-example] describe "addOne" $ do
  2053. 58.28 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2054. 58.28 s [sydtest-mutation-example] - addOne 1 `shouldBe` 2
  2055. 58.28 s [sydtest-mutation-example] + addOne 1 `shouldBe` 0
  2056. 58.28 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2057. 58.28 s [sydtest-mutation-example] addOne 5 `shouldBe` 6
  2058. 58.28 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:10:27-28
  2059. 58.28 s [sydtest-mutation-example] @@ -7,6 +7,6 @@
  2060. 58.28 s [sydtest-mutation-example] spec = do
  2061. 58.28 s [sydtest-mutation-example] describe "addOne" $ do
  2062. 58.28 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2063. 58.28 s [sydtest-mutation-example] - addOne 1 `shouldBe` 2
  2064. 58.28 s [sydtest-mutation-example] + addOne 1 `shouldBe` 1
  2065. 58.28 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2066. 58.28 s [sydtest-mutation-example] addOne 5 `shouldBe` 6
  2067. 58.28 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:10:27-28
  2068. 58.28 s [sydtest-mutation-example] @@ -7,6 +7,6 @@
  2069. 58.28 s [sydtest-mutation-example] spec = do
  2070. 58.28 s [sydtest-mutation-example] describe "addOne" $ do
  2071. 58.28 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2072. 58.28 s [sydtest-mutation-example] - addOne 1 `shouldBe` 2
  2073. 58.28 s [sydtest-mutation-example] + addOne 1 `shouldBe` -2
  2074. 58.28 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2075. 58.28 s [sydtest-mutation-example] addOne 5 `shouldBe` 6
  2076. 58.28 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:12:14-15
  2077. 58.28 s [sydtest-mutation-example] @@ -9,4 +9,4 @@
  2078. 58.28 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2079. 58.28 s [sydtest-mutation-example] addOne 1 `shouldBe` 2
  2080. 58.28 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2081. 58.28 s [sydtest-mutation-example] - addOne 5 `shouldBe` 6
  2082. 58.28 s [sydtest-mutation-example] + addOne 0 `shouldBe` 6
  2083. 58.28 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:12:14-15
  2084. 58.28 s [sydtest-mutation-example] @@ -9,4 +9,4 @@
  2085. 58.28 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2086. 58.29 s [sydtest-mutation-example] addOne 1 `shouldBe` 2
  2087. 58.29 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2088. 58.29 s [sydtest-mutation-example] - addOne 5 `shouldBe` 6
  2089. 58.29 s [sydtest-mutation-example] + addOne 1 `shouldBe` 6
  2090. 58.29 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:12:14-15
  2091. 58.29 s [sydtest-mutation-example] @@ -9,4 +9,4 @@
  2092. 58.29 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2093. 58.29 s [sydtest-mutation-example] addOne 1 `shouldBe` 2
  2094. 58.29 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2095. 58.29 s [sydtest-mutation-example] - addOne 5 `shouldBe` 6
  2096. 58.29 s [sydtest-mutation-example] + addOne -5 `shouldBe` 6
  2097. 58.29 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:12:27-28
  2098. 58.29 s [sydtest-mutation-example] @@ -9,4 +9,4 @@
  2099. 58.29 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2100. 58.29 s [sydtest-mutation-example] addOne 1 `shouldBe` 2
  2101. 58.29 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2102. 58.29 s [sydtest-mutation-example] - addOne 5 `shouldBe` 6
  2103. 58.29 s [sydtest-mutation-example] + addOne 5 `shouldBe` 0
  2104. 58.29 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:12:27-28
  2105. 58.29 s [sydtest-mutation-example] @@ -9,4 +9,4 @@
  2106. 58.29 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2107. 58.29 s [sydtest-mutation-example] addOne 1 `shouldBe` 2
  2108. 58.29 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2109. 58.29 s [sydtest-mutation-example] - addOne 5 `shouldBe` 6
  2110. 58.29 s [sydtest-mutation-example] + addOne 5 `shouldBe` 1
  2111. 58.29 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:12:27-28
  2112. 58.29 s [sydtest-mutation-example] @@ -9,4 +9,4 @@
  2113. 58.29 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2114. 58.29 s [sydtest-mutation-example] addOne 1 `shouldBe` 2
  2115. 58.29 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2116. 58.29 s [sydtest-mutation-example] - addOne 5 `shouldBe` 6
  2117. 58.29 s [sydtest-mutation-example] + addOne 5 `shouldBe` -6
  2118. 58.29 s [sydtest-mutation-example] added 11 mutations
  2119. 58.48 s [sydtest-mutation-example] [3 of 6] Compiling Example.OtherwiseLibSpec ( test/Example/OtherwiseLibSpec.hs, dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test-tmp/Example/OtherwiseLibSpec.o )
  2120. 58.50 s [sydtest-mutation-example] mutation: instrumenting Example.OtherwiseLibSpec
  2121. 58.50 s [sydtest-mutation-example] added mutation IntLit at test/Example/OtherwiseLibSpec.hs:10:18-19
  2122. 58.50 s [sydtest-mutation-example] @@ -7,7 +7,7 @@
  2123. 58.50 s [sydtest-mutation-example] spec =
  2124. 58.50 s [sydtest-mutation-example] describe "classify" $ do
  2125. 58.50 s [sydtest-mutation-example] it "classifies negative numbers" $
  2126. 58.50 s [sydtest-mutation-example] - classify (-1) `shouldBe` "negative"
  2127. 58.50 s [sydtest-mutation-example] + classify (-0) `shouldBe` "negative"
  2128. 58.50 s [sydtest-mutation-example] it "classifies zero" $
  2129. 58.50 s [sydtest-mutation-example] classify 0 `shouldBe` "zero"
  2130. 58.50 s [sydtest-mutation-example] it "classifies positive numbers" $
  2131. 58.50 s [sydtest-mutation-example] added mutation IntLit at test/Example/OtherwiseLibSpec.hs:10:18-19
  2132. 58.50 s [sydtest-mutation-example] @@ -7,7 +7,7 @@
  2133. 58.50 s [sydtest-mutation-example] spec =
  2134. 58.50 s [sydtest-mutation-example] describe "classify" $ do
  2135. 58.50 s [sydtest-mutation-example] it "classifies negative numbers" $
  2136. 58.50 s [sydtest-mutation-example] - classify (-1) `shouldBe` "negative"
  2137. 58.50 s [sydtest-mutation-example] + classify (--1) `shouldBe` "negative"
  2138. 58.50 s [sydtest-mutation-example] it "classifies zero" $
  2139. 58.50 s [sydtest-mutation-example] classify 0 `shouldBe` "zero"
  2140. 58.50 s [sydtest-mutation-example] it "classifies positive numbers" $
  2141. 58.50 s [sydtest-mutation-example] added mutation IntLit at test/Example/OtherwiseLibSpec.hs:12:16-17
  2142. 58.50 s [sydtest-mutation-example] @@ -9,6 +9,6 @@
  2143. 58.50 s [sydtest-mutation-example] it "classifies negative numbers" $
  2144. 58.50 s [sydtest-mutation-example] classify (-1) `shouldBe` "negative"
  2145. 58.50 s [sydtest-mutation-example] it "classifies zero" $
  2146. 58.50 s [sydtest-mutation-example] - classify 0 `shouldBe` "zero"
  2147. 58.50 s [sydtest-mutation-example] + classify 1 `shouldBe` "zero"
  2148. 58.50 s [sydtest-mutation-example] it "classifies positive numbers" $
  2149. 58.51 s [sydtest-mutation-example] classify 1 `shouldBe` "positive"
  2150. 58.51 s [sydtest-mutation-example] added mutation IntLit at test/Example/OtherwiseLibSpec.hs:14:16-17
  2151. 58.51 s [sydtest-mutation-example] @@ -11,4 +11,4 @@
  2152. 58.51 s [sydtest-mutation-example] it "classifies zero" $
  2153. 58.51 s [sydtest-mutation-example] classify 0 `shouldBe` "zero"
  2154. 58.51 s [sydtest-mutation-example] it "classifies positive numbers" $
  2155. 58.51 s [sydtest-mutation-example] - classify 1 `shouldBe` "positive"
  2156. 58.51 s [sydtest-mutation-example] + classify 0 `shouldBe` "positive"
  2157. 58.51 s [sydtest-mutation-example] added mutation IntLit at test/Example/OtherwiseLibSpec.hs:14:16-17
  2158. 58.51 s [sydtest-mutation-example] @@ -11,4 +11,4 @@
  2159. 58.51 s [sydtest-mutation-example] it "classifies zero" $
  2160. 58.51 s [sydtest-mutation-example] classify 0 `shouldBe` "zero"
  2161. 58.51 s [sydtest-mutation-example] it "classifies positive numbers" $
  2162. 58.51 s [sydtest-mutation-example] - classify 1 `shouldBe` "positive"
  2163. 58.51 s [sydtest-mutation-example] + classify -1 `shouldBe` "positive"
  2164. 58.51 s [sydtest-mutation-example] added 5 mutations
  2165. 58.67 s [sydtest-mutation-example] [4 of 6] Compiling Paths_sydtest_mutation_example ( dist/build/sydtest-mutation-example-test/autogen/Paths_sydtest_mutation_example.hs, dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test-tmp/Paths_sydtest_mutation_example.o )
  2166. 58.84 s [sydtest-mutation-example] [5 of 6] Compiling Spec ( test/Spec.hs, dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test-tmp/Spec.o )
  2167. 58.84 s [sydtest-mutation-example] mutation: instrumenting Spec
  2168. 58.84 s [sydtest-mutation-example] added 0 mutations
  2169. 58.93 s [sydtest-mutation-example] [6 of 6] Compiling Main ( test/Main.hs, dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test-tmp/Main.o )
  2170. 58.95 s [sydtest-mutation-example] mutation: instrumenting Main
  2171. 58.95 s [sydtest-mutation-example] added 0 mutations
  2172. 59.84 s [sydtest-mutation-example] [1 of 7] Compiling Example.BoolLibSpec ( test/Example/BoolLibSpec.hs, dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test-tmp/Example/BoolLibSpec.o ) [Impure plugin forced recompilation]
  2173. 60.01 s [sydtest-mutation-example] mutation: instrumenting Example.BoolLibSpec
  2174. 60.01 s [sydtest-mutation-example] added mutation BoolLit at test/Example/BoolLibSpec.hs:10:32-36
  2175. 60.01 s [sydtest-mutation-example] @@ -7,7 +7,7 @@
  2176. 60.01 s [sydtest-mutation-example] spec = do
  2177. 60.01 s [sydtest-mutation-example] describe "wrapTrue" $
  2178. 60.01 s [sydtest-mutation-example] it "is Just True" $
  2179. 60.01 s [sydtest-mutation-example] - wrapTrue `shouldBe` Just True
  2180. 60.01 s [sydtest-mutation-example] + wrapTrue `shouldBe` Just False
  2181. 60.01 s [sydtest-mutation-example]
  2182. 60.01 s [sydtest-mutation-example] describe "wrapFalse" $
  2183. 60.01 s [sydtest-mutation-example] it "is Just False" $
  2184. 60.01 s [sydtest-mutation-example] added mutation BoolLit at test/Example/BoolLibSpec.hs:14:33-38
  2185. 60.01 s [sydtest-mutation-example] @@ -11,7 +11,7 @@
  2186. 60.01 s [sydtest-mutation-example]
  2187. 60.01 s [sydtest-mutation-example] describe "wrapFalse" $
  2188. 60.01 s [sydtest-mutation-example] it "is Just False" $
  2189. 60.01 s [sydtest-mutation-example] - wrapFalse `shouldBe` Just False
  2190. 60.01 s [sydtest-mutation-example] + wrapFalse `shouldBe` Just True
  2191. 60.01 s [sydtest-mutation-example]
  2192. 60.01 s [sydtest-mutation-example] describe "negateWrapped" $ do
  2193. 60.01 s [sydtest-mutation-example] it "negates Just True to Just False" $
  2194. 60.01 s [sydtest-mutation-example] added mutation BoolLit at test/Example/BoolLibSpec.hs:18:27-31
  2195. 60.01 s [sydtest-mutation-example] @@ -15,7 +15,7 @@
  2196. 60.02 s [sydtest-mutation-example]
  2197. 60.02 s [sydtest-mutation-example] describe "negateWrapped" $ do
  2198. 60.02 s [sydtest-mutation-example] it "negates Just True to Just False" $
  2199. 60.02 s [sydtest-mutation-example] - negateWrapped (Just True) `shouldBe` Just False
  2200. 60.02 s [sydtest-mutation-example] + negateWrapped (Just False) `shouldBe` Just False
  2201. 60.02 s [sydtest-mutation-example] it "negates Just False to Just True" $
  2202. 60.02 s [sydtest-mutation-example] negateWrapped (Just False) `shouldBe` Just True
  2203. 60.02 s [sydtest-mutation-example] it "leaves Nothing as Nothing" $
  2204. 60.02 s [sydtest-mutation-example] added mutation BoolLit at test/Example/BoolLibSpec.hs:18:49-54
  2205. 60.02 s [sydtest-mutation-example] @@ -15,7 +15,7 @@
  2206. 60.02 s [sydtest-mutation-example]
  2207. 60.02 s [sydtest-mutation-example] describe "negateWrapped" $ do
  2208. 60.02 s [sydtest-mutation-example] it "negates Just True to Just False" $
  2209. 60.02 s [sydtest-mutation-example] - negateWrapped (Just True) `shouldBe` Just False
  2210. 60.02 s [sydtest-mutation-example] + negateWrapped (Just True) `shouldBe` Just True
  2211. 60.02 s [sydtest-mutation-example] it "negates Just False to Just True" $
  2212. 60.02 s [sydtest-mutation-example] negateWrapped (Just False) `shouldBe` Just True
  2213. 60.02 s [sydtest-mutation-example] it "leaves Nothing as Nothing" $
  2214. 60.02 s [sydtest-mutation-example] added mutation BoolLit at test/Example/BoolLibSpec.hs:20:27-32
  2215. 60.02 s [sydtest-mutation-example] @@ -17,6 +17,6 @@
  2216. 60.02 s [sydtest-mutation-example] it "negates Just True to Just False" $
  2217. 60.02 s [sydtest-mutation-example] negateWrapped (Just True) `shouldBe` Just False
  2218. 60.02 s [sydtest-mutation-example] it "negates Just False to Just True" $
  2219. 60.02 s [sydtest-mutation-example] - negateWrapped (Just False) `shouldBe` Just True
  2220. 60.02 s [sydtest-mutation-example] + negateWrapped (Just True) `shouldBe` Just True
  2221. 60.02 s [sydtest-mutation-example] it "leaves Nothing as Nothing" $
  2222. 60.02 s [sydtest-mutation-example] negateWrapped Nothing `shouldBe` Nothing
  2223. 60.02 s [sydtest-mutation-example] added mutation BoolLit at test/Example/BoolLibSpec.hs:20:50-54
  2224. 60.02 s [sydtest-mutation-example] @@ -17,6 +17,6 @@
  2225. 60.02 s [sydtest-mutation-example] it "negates Just True to Just False" $
  2226. 60.02 s [sydtest-mutation-example] negateWrapped (Just True) `shouldBe` Just False
  2227. 60.02 s [sydtest-mutation-example] it "negates Just False to Just True" $
  2228. 60.02 s [sydtest-mutation-example] - negateWrapped (Just False) `shouldBe` Just True
  2229. 60.02 s [sydtest-mutation-example] + negateWrapped (Just False) `shouldBe` Just False
  2230. 60.02 s [sydtest-mutation-example] it "leaves Nothing as Nothing" $
  2231. 60.02 s [sydtest-mutation-example] negateWrapped Nothing `shouldBe` Nothing
  2232. 60.02 s [sydtest-mutation-example] added 6 mutations
  2233. 61.09 s [sydtest-mutation-example] [2 of 7] Compiling Example.LibSpec ( test/Example/LibSpec.hs, dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test-tmp/Example/LibSpec.o ) [Impure plugin forced recompilation]
  2234. 61.10 s [sydtest-mutation-example] mutation: instrumenting Example.LibSpec
  2235. 61.10 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:10:14-15
  2236. 61.10 s [sydtest-mutation-example] @@ -7,6 +7,6 @@
  2237. 61.10 s [sydtest-mutation-example] spec = do
  2238. 61.10 s [sydtest-mutation-example] describe "addOne" $ do
  2239. 61.10 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2240. 61.10 s [sydtest-mutation-example] - addOne 1 `shouldBe` 2
  2241. 61.10 s [sydtest-mutation-example] + addOne 0 `shouldBe` 2
  2242. 61.10 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2243. 61.10 s [sydtest-mutation-example] addOne 5 `shouldBe` 6
  2244. 61.10 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:10:14-15
  2245. 61.10 s [sydtest-mutation-example] @@ -7,6 +7,6 @@
  2246. 61.10 s [sydtest-mutation-example] spec = do
  2247. 61.10 s [sydtest-mutation-example] describe "addOne" $ do
  2248. 61.10 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2249. 61.11 s [sydtest-mutation-example] - addOne 1 `shouldBe` 2
  2250. 61.11 s [sydtest-mutation-example] + addOne -1 `shouldBe` 2
  2251. 61.11 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2252. 61.11 s [sydtest-mutation-example] addOne 5 `shouldBe` 6
  2253. 61.11 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:10:27-28
  2254. 61.11 s [sydtest-mutation-example] @@ -7,6 +7,6 @@
  2255. 61.11 s [sydtest-mutation-example] spec = do
  2256. 61.11 s [sydtest-mutation-example] describe "addOne" $ do
  2257. 61.11 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2258. 61.11 s [sydtest-mutation-example] - addOne 1 `shouldBe` 2
  2259. 61.11 s [sydtest-mutation-example] + addOne 1 `shouldBe` 0
  2260. 61.11 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2261. 61.11 s [sydtest-mutation-example] addOne 5 `shouldBe` 6
  2262. 61.11 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:10:27-28
  2263. 61.11 s [sydtest-mutation-example] @@ -7,6 +7,6 @@
  2264. 61.11 s [sydtest-mutation-example] spec = do
  2265. 61.11 s [sydtest-mutation-example] describe "addOne" $ do
  2266. 61.11 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2267. 61.11 s [sydtest-mutation-example] - addOne 1 `shouldBe` 2
  2268. 61.11 s [sydtest-mutation-example] + addOne 1 `shouldBe` 1
  2269. 61.11 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2270. 61.11 s [sydtest-mutation-example] addOne 5 `shouldBe` 6
  2271. 61.11 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:10:27-28
  2272. 61.11 s [sydtest-mutation-example] @@ -7,6 +7,6 @@
  2273. 61.11 s [sydtest-mutation-example] spec = do
  2274. 61.11 s [sydtest-mutation-example] describe "addOne" $ do
  2275. 61.11 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2276. 61.11 s [sydtest-mutation-example] - addOne 1 `shouldBe` 2
  2277. 61.11 s [sydtest-mutation-example] + addOne 1 `shouldBe` -2
  2278. 61.11 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2279. 61.11 s [sydtest-mutation-example] addOne 5 `shouldBe` 6
  2280. 61.11 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:12:14-15
  2281. 61.11 s [sydtest-mutation-example] @@ -9,4 +9,4 @@
  2282. 61.11 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2283. 61.11 s [sydtest-mutation-example] addOne 1 `shouldBe` 2
  2284. 61.11 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2285. 61.11 s [sydtest-mutation-example] - addOne 5 `shouldBe` 6
  2286. 61.11 s [sydtest-mutation-example] + addOne 0 `shouldBe` 6
  2287. 61.11 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:12:14-15
  2288. 61.11 s [sydtest-mutation-example] @@ -9,4 +9,4 @@
  2289. 61.11 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2290. 61.12 s [sydtest-mutation-example] addOne 1 `shouldBe` 2
  2291. 61.12 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2292. 61.12 s [sydtest-mutation-example] - addOne 5 `shouldBe` 6
  2293. 61.12 s [sydtest-mutation-example] + addOne 1 `shouldBe` 6
  2294. 61.12 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:12:14-15
  2295. 61.12 s [sydtest-mutation-example] @@ -9,4 +9,4 @@
  2296. 61.12 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2297. 61.12 s [sydtest-mutation-example] addOne 1 `shouldBe` 2
  2298. 61.12 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2299. 61.12 s [sydtest-mutation-example] - addOne 5 `shouldBe` 6
  2300. 61.12 s [sydtest-mutation-example] + addOne -5 `shouldBe` 6
  2301. 61.12 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:12:27-28
  2302. 61.12 s [sydtest-mutation-example] @@ -9,4 +9,4 @@
  2303. 61.12 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2304. 61.12 s [sydtest-mutation-example] addOne 1 `shouldBe` 2
  2305. 61.12 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2306. 61.12 s [sydtest-mutation-example] - addOne 5 `shouldBe` 6
  2307. 61.12 s [sydtest-mutation-example] + addOne 5 `shouldBe` 0
  2308. 61.12 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:12:27-28
  2309. 61.12 s [sydtest-mutation-example] @@ -9,4 +9,4 @@
  2310. 61.12 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2311. 61.12 s [sydtest-mutation-example] addOne 1 `shouldBe` 2
  2312. 61.12 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2313. 61.12 s [sydtest-mutation-example] - addOne 5 `shouldBe` 6
  2314. 61.12 s [sydtest-mutation-example] + addOne 5 `shouldBe` 1
  2315. 61.12 s [sydtest-mutation-example] added mutation IntLit at test/Example/LibSpec.hs:12:27-28
  2316. 61.12 s [sydtest-mutation-example] @@ -9,4 +9,4 @@
  2317. 61.12 s [sydtest-mutation-example] it "returns 2 for input 1" $
  2318. 61.12 s [sydtest-mutation-example] addOne 1 `shouldBe` 2
  2319. 61.12 s [sydtest-mutation-example] it "returns 6 for input 5" $
  2320. 61.12 s [sydtest-mutation-example] - addOne 5 `shouldBe` 6
  2321. 61.12 s [sydtest-mutation-example] + addOne 5 `shouldBe` -6
  2322. 61.12 s [sydtest-mutation-example] added 11 mutations
  2323. 61.31 s [sydtest-mutation-example] [3 of 7] Compiling Example.OtherwiseLibSpec ( test/Example/OtherwiseLibSpec.hs, dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test-tmp/Example/OtherwiseLibSpec.o ) [Impure plugin forced recompilation]
  2324. 61.37 s [sydtest-mutation-example] mutation: instrumenting Example.OtherwiseLibSpec
  2325. 61.37 s [sydtest-mutation-example] added mutation IntLit at test/Example/OtherwiseLibSpec.hs:10:18-19
  2326. 61.37 s [sydtest-mutation-example] @@ -7,7 +7,7 @@
  2327. 61.38 s [sydtest-mutation-example] spec =
  2328. 61.38 s [sydtest-mutation-example] describe "classify" $ do
  2329. 61.38 s [sydtest-mutation-example] it "classifies negative numbers" $
  2330. 61.38 s [sydtest-mutation-example] - classify (-1) `shouldBe` "negative"
  2331. 61.38 s [sydtest-mutation-example] + classify (-0) `shouldBe` "negative"
  2332. 61.38 s [sydtest-mutation-example] it "classifies zero" $
  2333. 61.38 s [sydtest-mutation-example] classify 0 `shouldBe` "zero"
  2334. 61.38 s [sydtest-mutation-example] it "classifies positive numbers" $
  2335. 61.38 s [sydtest-mutation-example] added mutation IntLit at test/Example/OtherwiseLibSpec.hs:10:18-19
  2336. 61.38 s [sydtest-mutation-example] @@ -7,7 +7,7 @@
  2337. 61.38 s [sydtest-mutation-example] spec =
  2338. 61.38 s [sydtest-mutation-example] describe "classify" $ do
  2339. 61.38 s [sydtest-mutation-example] it "classifies negative numbers" $
  2340. 61.38 s [sydtest-mutation-example] - classify (-1) `shouldBe` "negative"
  2341. 61.38 s [sydtest-mutation-example] + classify (--1) `shouldBe` "negative"
  2342. 61.38 s [sydtest-mutation-example] it "classifies zero" $
  2343. 61.38 s [sydtest-mutation-example] classify 0 `shouldBe` "zero"
  2344. 61.38 s [sydtest-mutation-example] it "classifies positive numbers" $
  2345. 61.38 s [sydtest-mutation-example] added mutation IntLit at test/Example/OtherwiseLibSpec.hs:12:16-17
  2346. 61.38 s [sydtest-mutation-example] @@ -9,6 +9,6 @@
  2347. 61.38 s [sydtest-mutation-example] it "classifies negative numbers" $
  2348. 61.38 s [sydtest-mutation-example] classify (-1) `shouldBe` "negative"
  2349. 61.38 s [sydtest-mutation-example] it "classifies zero" $
  2350. 61.38 s [sydtest-mutation-example] - classify 0 `shouldBe` "zero"
  2351. 61.38 s [sydtest-mutation-example] + classify 1 `shouldBe` "zero"
  2352. 61.38 s [sydtest-mutation-example] it "classifies positive numbers" $
  2353. 61.38 s [sydtest-mutation-example] classify 1 `shouldBe` "positive"
  2354. 61.38 s [sydtest-mutation-example] added mutation IntLit at test/Example/OtherwiseLibSpec.hs:14:16-17
  2355. 61.38 s [sydtest-mutation-example] @@ -11,4 +11,4 @@
  2356. 61.38 s [sydtest-mutation-example] it "classifies zero" $
  2357. 61.38 s [sydtest-mutation-example] classify 0 `shouldBe` "zero"
  2358. 61.39 s [sydtest-mutation-example] it "classifies positive numbers" $
  2359. 61.39 s [sydtest-mutation-example] - classify 1 `shouldBe` "positive"
  2360. 61.39 s [sydtest-mutation-example] + classify 0 `shouldBe` "positive"
  2361. 61.39 s [sydtest-mutation-example] added mutation IntLit at test/Example/OtherwiseLibSpec.hs:14:16-17
  2362. 61.39 s [sydtest-mutation-example] @@ -11,4 +11,4 @@
  2363. 61.39 s [sydtest-mutation-example] it "classifies zero" $
  2364. 61.39 s [sydtest-mutation-example] classify 0 `shouldBe` "zero"
  2365. 61.39 s [sydtest-mutation-example] it "classifies positive numbers" $
  2366. 61.39 s [sydtest-mutation-example] - classify 1 `shouldBe` "positive"
  2367. 61.39 s [sydtest-mutation-example] + classify -1 `shouldBe` "positive"
  2368. 61.39 s [sydtest-mutation-example] added 5 mutations
  2369. 61.47 s [sydtest-mutation-example] [4 of 7] Compiling Paths_sydtest_mutation_example ( dist/build/sydtest-mutation-example-test/autogen/Paths_sydtest_mutation_example.hs, dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test-tmp/Paths_sydtest_mutation_example.o ) [Impure plugin forced recompilation]
  2370. 61.68 s [sydtest-mutation-example] [5 of 7] Compiling Spec ( test/Spec.hs, dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test-tmp/Spec.o ) [Impure plugin forced recompilation]
  2371. 61.68 s [sydtest-mutation-example] mutation: instrumenting Spec
  2372. 61.68 s [sydtest-mutation-example] added 0 mutations
  2373. 61.78 s [sydtest-mutation-example] [6 of 7] Compiling Main ( test/Main.hs, dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test-tmp/Main.o ) [Impure plugin forced recompilation]
  2374. 61.79 s [sydtest-mutation-example] mutation: instrumenting Main
  2375. 61.79 s [sydtest-mutation-example] added 0 mutations
  2376. 61.89 s [sydtest-mutation-example] [7 of 7] Linking dist/build/sydtest-mutation-example-test/sydtest-mutation-example-test
  2377. 65.93 s [sydtest-mutation-example] mutation-nix: manifest output at /nix/store/33vjd2phw5z88mbxjanaxdg1iwpg23sj-sydtest-mutation-example-0.0.0.0-manifest:
  2378. 65.94 s [sydtest-mutation-example] total 80
  2379. 65.94 s [sydtest-mutation-example] drwxr-xr-x 2 nixbld nixbld 4096 May 13 16:04 .
  2380. 65.94 s [sydtest-mutation-example] drwxrwxr-t 317 nobody nixbld 32768 May 13 16:04 ..
  2381. 65.94 s [sydtest-mutation-example] -rw-r--r-- 1 nixbld nixbld 1018 May 13 16:04 Example.BoolLib.json
  2382. 65.94 s [sydtest-mutation-example] -rw-r--r-- 1 nixbld nixbld 3642 May 13 16:04 Example.BoolLibSpec.json
  2383. 65.94 s [sydtest-mutation-example] -rw-r--r-- 1 nixbld nixbld 4044 May 13 16:04 Example.FunctionExceptionLib.json
  2384. 65.94 s [sydtest-mutation-example] -rw-r--r-- 1 nixbld nixbld 930 May 13 16:04 Example.Lib.json
  2385. 65.94 s [sydtest-mutation-example] -rw-r--r-- 1 nixbld nixbld 5097 May 13 16:04 Example.LibSpec.json
  2386. 65.94 s [sydtest-mutation-example] -rw-r--r-- 1 nixbld nixbld 2896 May 13 16:04 Example.OtherwiseLib.json
  2387. 65.94 s [sydtest-mutation-example] -rw-r--r-- 1 nixbld nixbld 2797 May 13 16:04 Example.OtherwiseLibSpec.json
  2388. 65.94 s [sydtest-mutation-example] -rw-r--r-- 1 nixbld nixbld 982 May 13 16:04 Example.UntestedLib.json
  2389. 65.94 s [sydtest-mutation-example] -rw-r--r-- 1 nixbld nixbld 2 May 13 16:04 Main.json
  2390. 65.94 s [sydtest-mutation-example] -rw-r--r-- 1 nixbld nixbld 2 May 13 16:04 Spec.json
  2391. 65.95 s [sydtest-mutation-example] Phase: checkPhase
  2392. 65.97 s [sydtest-mutation-example] mutation-nix: collecting coverage for suite sydtest-mutation-example
  2393. 67.24 s [sydtest-mutation-example] Tests:
  2394. 67.24 s [sydtest-mutation-example]
  2395. 67.24 s [sydtest-mutation-example] Example.LibSpec
  2396. 67.24 s [sydtest-mutation-example] addOne
  2397. 67.27 s [sydtest-mutation-example] returns 6 for input 5 0.23 ms
  2398. 67.27 s [sydtest-mutation-example] returns 2 for input 1 0.44 ms
  2399. 67.28 s [sydtest-mutation-example] Example.BoolLibSpec
  2400. 67.28 s [sydtest-mutation-example] wrapTrue
  2401. 67.28 s [sydtest-mutation-example] is Just True 0.36 ms
  2402. 67.28 s [sydtest-mutation-example] wrapFalse
  2403. 67.28 s [sydtest-mutation-example] is Just False 0.09 ms
  2404. 67.28 s [sydtest-mutation-example] negateWrapped
  2405. 67.28 s [sydtest-mutation-example] negates Just True to Just False 0.01 ms
  2406. 67.28 s [sydtest-mutation-example] leaves Nothing as Nothing 0.01 ms
  2407. 67.28 s [sydtest-mutation-example] negates Just False to Just True 0.02 ms
  2408. 67.28 s [sydtest-mutation-example] Example.OtherwiseLibSpec
  2409. 67.28 s [sydtest-mutation-example] classify
  2410. 67.28 s [sydtest-mutation-example] classifies negative numbers 0.01 ms
  2411. 67.28 s [sydtest-mutation-example] classifies zero 0.01 ms
  2412. 67.28 s [sydtest-mutation-example] classifies positive numbers 0.00 ms
  2413. 67.28 s [sydtest-mutation-example]
  2414. 67.28 s [sydtest-mutation-example] Passed: 10
  2415. 67.28 s [sydtest-mutation-example] Failed: 0
  2416. 67.28 s [sydtest-mutation-example] Sum of test runtimes: 0.00 seconds
  2417. 67.28 s [sydtest-mutation-example] Test suite took: 0.02 seconds
  2418. 67.28 s [sydtest-mutation-example]
  2419. 67.31 s [sydtest-mutation-example] mutation-nix: collecting coverage for suite sydtest-mutation-example-gen
  2420. 68.48 s [sydtest-mutation-example] Tests:
  2421. 68.48 s [sydtest-mutation-example]
  2422. 68.48 s [sydtest-mutation-example] Example.LibSpec
  2423. 68.48 s [sydtest-mutation-example] addOne
  2424. 68.49 s [sydtest-mutation-example] is greater than its input 3.55 ms
  2425. 68.50 s [sydtest-mutation-example] passed for all of 100 inputs.
  2426. 68.51 s [sydtest-mutation-example] increments by one 4.94 ms
  2427. 68.51 s [sydtest-mutation-example] passed for all of 100 inputs.
  2428. 68.51 s [sydtest-mutation-example] Example.BoolLibSpec
  2429. 68.51 s [sydtest-mutation-example] wrapTrue
  2430. 68.51 s [sydtest-mutation-example] is Just True 0.27 ms
  2431. 68.51 s [sydtest-mutation-example] wrapFalse
  2432. 68.51 s [sydtest-mutation-example] is Just False 3.84 ms
  2433. 68.52 s [sydtest-mutation-example] negateWrapped
  2434. 68.52 s [sydtest-mutation-example] negates Just True to Just False 2.67 ms
  2435. 68.52 s [sydtest-mutation-example] leaves Nothing as Nothing 0.01 ms
  2436. 68.52 s [sydtest-mutation-example] negates Just False to Just True 0.72 ms
  2437. 68.52 s [sydtest-mutation-example] Example.ExceptionLibSpec
  2438. 68.52 s [sydtest-mutation-example] addOneModuleDisabled
  2439. 68.52 s [sydtest-mutation-example] increments by one 1.54 ms
  2440. 68.53 s [sydtest-mutation-example] passed for all of 100 inputs.
  2441. 68.53 s [sydtest-mutation-example] Example.FunctionExceptionLibSpec
  2442. 68.53 s [sydtest-mutation-example] addOneArithAndIntLitDisabled
  2443. 68.53 s [sydtest-mutation-example] increments by one 9.36 ms
  2444. 68.53 s [sydtest-mutation-example] passed for all of 100 inputs.
  2445. 68.53 s [sydtest-mutation-example] addOneFunctionDisabled
  2446. 68.53 s [sydtest-mutation-example] increments by one 9.65 ms
  2447. 68.53 s [sydtest-mutation-example] passed for all of 100 inputs.
  2448. 68.53 s [sydtest-mutation-example] addOneArithDisabled
  2449. 68.53 s [sydtest-mutation-example] increments by one 3.72 ms
  2450. 68.53 s [sydtest-mutation-example] passed for all of 100 inputs.
  2451. 68.53 s [sydtest-mutation-example]
  2452. 68.53 s [sydtest-mutation-example] Examples: 605
  2453. 68.53 s [sydtest-mutation-example] Passed: 11
  2454. 68.53 s [sydtest-mutation-example] Failed: 0
  2455. 68.53 s [sydtest-mutation-example] Sum of test runtimes: 0.04 seconds
  2456. 68.53 s [sydtest-mutation-example] Test suite took: 0.05 seconds
  2457. 68.54 s [sydtest-mutation-example]
  2458. 68.58 s [sydtest-mutation-example] mutation-nix: running mutations
  2459. 91.57 s [sydtest-mutation-example] Tests:
  2460. 91.59 s [sydtest-mutation-example]
  2461. 91.59 s [sydtest-mutation-example] Example.LibSpec
  2462. 91.59 s [sydtest-mutation-example] addOne
  2463. 91.59 s [sydtest-mutation-example] returns 6 for input 5 0.46 ms
  2464. 91.59 s [sydtest-mutation-example] returns 2 for input 1 0.12 ms
  2465. 91.59 s [sydtest-mutation-example] Example.BoolLibSpec
  2466. 91.59 s [sydtest-mutation-example] wrapTrue
  2467. 91.59 s [sydtest-mutation-example] is Just True 0.14 ms
  2468. 91.59 s [sydtest-mutation-example] wrapFalse
  2469. 91.59 s [sydtest-mutation-example] is Just False 0.27 ms
  2470. 91.59 s [sydtest-mutation-example] negateWrapped
  2471. 91.59 s [sydtest-mutation-example] negates Just True to Just False 0.01 ms
  2472. 91.59 s [sydtest-mutation-example] leaves Nothing as Nothing 0.01 ms
  2473. 91.59 s [sydtest-mutation-example] negates Just False to Just True 0.01 ms
  2474. 91.59 s [sydtest-mutation-example] Example.OtherwiseLibSpec
  2475. 91.59 s [sydtest-mutation-example] classify
  2476. 91.59 s [sydtest-mutation-example] classifies negative numbers 0.01 ms
  2477. 91.59 s [sydtest-mutation-example] classifies zero 0.02 ms
  2478. 91.59 s [sydtest-mutation-example] classifies positive numbers 0.01 ms
  2479. 91.59 s [sydtest-mutation-example]
  2480. 91.59 s [sydtest-mutation-example] Passed: 10
  2481. 91.59 s [sydtest-mutation-example] Failed: 0
  2482. 91.59 s [sydtest-mutation-example] Sum of test runtimes: 0.00 seconds
  2483. 91.59 s [sydtest-mutation-example] Test suite took: 0.00 seconds
  2484. 91.59 s [sydtest-mutation-example]
  2485. 91.67 s [sydtest-mutation-example] Phase: haddockPhase
  2486. 91.68 s [sydtest-mutation-example] Phase: installPhase
  2487. 91.98 s [sydtest-mutation-example] Installing library in /nix/store/hjq5n20l59q718h8jp46pr9vgah0gaq1-sydtest-mutation-example-0.0.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/sydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA
  2488. 92.48 s [sydtest-mutation-example] Phase: fixupPhase
  2489. 92.51 s [sydtest-mutation-example] shrinking RPATHs of ELF executables and libraries in /nix/store/hjq5n20l59q718h8jp46pr9vgah0gaq1-sydtest-mutation-example-0.0.0.0
  2490. 92.52 s [sydtest-mutation-example] shrinking /nix/store/hjq5n20l59q718h8jp46pr9vgah0gaq1-sydtest-mutation-example-0.0.0.0/lib/ghc-9.10.3/lib/x86_64-linux-ghc-9.10.3-05f6/libHSsydtest-mutation-example-0.0.0.0-HKLtxgcNX3SGgTl9z4D5SA-ghc9.10.3.so
  2491. 92.55 s [sydtest-mutation-example] checking for references to /build/ in /nix/store/hjq5n20l59q718h8jp46pr9vgah0gaq1-sydtest-mutation-example-0.0.0.0...
  2492. 92.60 s [sydtest-mutation-example] patching script interpreter paths in /nix/store/hjq5n20l59q718h8jp46pr9vgah0gaq1-sydtest-mutation-example-0.0.0.0
  2493. 92.60 s [sydtest-mutation-example] stripping (with command strip and flags -S -p) in /nix/store/hjq5n20l59q718h8jp46pr9vgah0gaq1-sydtest-mutation-example-0.0.0.0/lib
  2494. 92.67 s [sydtest-mutation-example] shrinking RPATHs of ELF executables and libraries in /nix/store/33vjd2phw5z88mbxjanaxdg1iwpg23sj-sydtest-mutation-example-0.0.0.0-manifest
  2495. 92.68 s [sydtest-mutation-example] checking for references to /build/ in /nix/store/33vjd2phw5z88mbxjanaxdg1iwpg23sj-sydtest-mutation-example-0.0.0.0-manifest...
  2496. 92.70 s [sydtest-mutation-example] patching script interpreter paths in /nix/store/33vjd2phw5z88mbxjanaxdg1iwpg23sj-sydtest-mutation-example-0.0.0.0-manifest
  2497. 92.70 s [sydtest-mutation-example] shrinking RPATHs of ELF executables and libraries in /nix/store/b1r6196adqjkknvdhr82ql3a4p1i75q4-sydtest-mutation-example-0.0.0.0-report
  2498. 92.71 s [sydtest-mutation-example] checking for references to /build/ in /nix/store/b1r6196adqjkknvdhr82ql3a4p1i75q4-sydtest-mutation-example-0.0.0.0-report...
  2499. 92.73 s [sydtest-mutation-example] patching script interpreter paths in /nix/store/b1r6196adqjkknvdhr82ql3a4p1i75q4-sydtest-mutation-example-0.0.0.0-report
  2500. 92.85 s Progress: 5 of 6 built