Reduce compile time of tests with -O0 -fmax-simplifier-iterations=0.
authorJulien Moutinho <julm+symantic@autogeree.net>
Sun, 5 Mar 2017 02:29:20 +0000 (03:29 +0100)
committerJulien Moutinho <julm+symantic@autogeree.net>
Mon, 6 Mar 2017 22:33:01 +0000 (23:33 +0100)
symantic-lib/Language/Symantic/Lib/Applicative/Test.hs
symantic-lib/Language/Symantic/Lib/Foldable/Test.hs
symantic-lib/Language/Symantic/Lib/Functor/Test.hs
symantic-lib/Language/Symantic/Lib/Map/Test.hs
symantic-lib/Language/Symantic/Lib/MonoFunctor/Test.hs
symantic-lib/Language/Symantic/Lib/Num/Test.hs
symantic-lib/Language/Symantic/Lib/Tuple2/Test.hs
symantic-lib/Language/Symantic/Typing/Test.hs

index 2c0f56e971381c019614919064a649160fd09834..afb9abf8eeb0770b4b8f7c9eafd48a7daff1988a 100644 (file)
@@ -1,4 +1,5 @@
 {-# OPTIONS_GHC -fno-warn-missing-signatures #-}
+{-# OPTIONS_GHC -O0 -fmax-simplifier-iterations=0 #-}
 module Lib.Applicative.Test where
 
 import Test.Tasty
index ea2e3637e74495dd856d97644648b5797e3a8898..1a05dd71c1ec941f36f32e74f0d41f6fece47e3a 100644 (file)
@@ -1,4 +1,5 @@
 {-# OPTIONS_GHC -fno-warn-missing-signatures #-}
+{-# OPTIONS_GHC -O0 -fmax-simplifier-iterations=0 #-}
 module Lib.Foldable.Test where
 
 import Test.Tasty
index 085c3b6dc69b6e11476d6b8c03ae371ac8cfc781..4a48fedf317ff0487100c92abeae0fc726095dc9 100644 (file)
@@ -1,4 +1,5 @@
 {-# OPTIONS_GHC -fno-warn-missing-signatures #-}
+{-# OPTIONS_GHC -O0 -fmax-simplifier-iterations=0 #-}
 module Lib.Functor.Test where
 
 import Test.Tasty
index 8fb92c3d1aa9506fab9468593478538879940a3c..7065623769abfb67e73200cf21906a160099b714 100644 (file)
@@ -1,4 +1,5 @@
 {-# OPTIONS_GHC -fno-warn-missing-signatures #-}
+{-# OPTIONS_GHC -O0 -fmax-simplifier-iterations=0 #-}
 module Lib.Map.Test where
 
 import Test.Tasty
index 0807c344ca1eec2dc95b91f22e10d086aae7bb94..65e845a3651b507d86e48456287b76836ee43d8b 100644 (file)
@@ -1,4 +1,5 @@
 {-# OPTIONS_GHC -fno-warn-missing-signatures #-}
+{-# OPTIONS_GHC -O0 -fmax-simplifier-iterations=0 #-}
 module Lib.MonoFunctor.Test where
 
 import Test.Tasty
index 2b9a0e34cb2da86009e2afa49f1c661914ea999f..5c4ad02a3a8b3cd778eb8aa57e758ec25b235c6e 100644 (file)
@@ -1,5 +1,6 @@
 {-# OPTIONS_GHC -fno-warn-orphans #-}
 {-# OPTIONS_GHC -fno-warn-missing-signatures #-}
+{-# OPTIONS_GHC -O0 -fmax-simplifier-iterations=0 #-}
 {-# LANGUAGE UndecidableInstances #-}
 {-# LANGUAGE StandaloneDeriving #-}
 module Lib.Num.Test where
index a9a677e9621684284b5d0c0b705429288d095f2d..c6e421c7768566cf65aca78351ea6a661bf96272 100644 (file)
@@ -1,4 +1,5 @@
 {-# OPTIONS_GHC -fno-warn-missing-signatures #-}
+{-# OPTIONS_GHC -O0 -fmax-simplifier-iterations=0 #-}
 module Lib.Tuple2.Test where
 
 import Test.Tasty
index a83cd0aa374fcec963fee1fe32ac1648e9b20232..80b6608c718beb9a74399139e16bb4cc5149f931 100644 (file)
@@ -1,5 +1,6 @@
 {-# LANGUAGE UndecidableInstances #-}
 {-# OPTIONS_GHC -fno-warn-orphans #-}
+{-# OPTIONS_GHC -O0 -fmax-simplifier-iterations=0 #-}
 module Typing.Test where
 
 import Test.Tasty