aboutsummaryrefslogtreecommitdiff
path: root/test/Main.hs
diff options
context:
space:
mode:
authoralexwl <alexey.a.kiryushin@gmail.com>2018-12-23 17:59:00 +0300
committeralexwl <alexey.a.kiryushin@gmail.com>2018-12-23 17:59:00 +0300
commite6d0b7bf0954f941357d77e8158aa52bb1c96686 (patch)
treebb32dfaac36af2c009bbf2158f6ac5e9745f8fe6 /test/Main.hs
parent27024fa57469af22d5b39309042f203c7b2efc5e (diff)
Add support for GHC 8.6.3
Diffstat (limited to 'test/Main.hs')
-rw-r--r--test/Main.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Main.hs b/test/Main.hs
index 542829e..3ed32a4 100644
--- a/test/Main.hs
+++ b/test/Main.hs
@@ -155,8 +155,10 @@ moduleInfoSpec modInfo =
HCE.idOccMap (modInfo :: HCE.ModuleInfo) `shouldBe` testIdOccMap
stackYamlArg :: [String]
-#if MIN_VERSION_GLASGOW_HASKELL(8,4,4,0)
+#if MIN_VERSION_GLASGOW_HASKELL(8,6,1,0)
stackYamlArg = []
+#elif MIN_VERSION_GLASGOW_HASKELL(8,4,4,0)
+stackYamlArg = ["--stack-yaml=stack-8.4.4.yaml"]
#elif MIN_VERSION_GLASGOW_HASKELL(8,4,3,0)
stackYamlArg = ["--stack-yaml=stack-8.4.3.yaml" ]
#elif MIN_VERSION_GLASGOW_HASKELL(8,2,2,0)