@@ -1216,10 +1216,6 @@ findDefinitionAndHoverTests = let
1216
1216
testM yes yes reexported reexportedSig " Imported symbol (reexported)"
1217
1217
, if | ghcVersion == GHC90 && isWindows ->
1218
1218
test no broken thLocL57 thLoc " TH Splice Hover"
1219
- | ghcVersion == GHC92 && (isWindows || isMac) ->
1220
- -- Some GHC 9.2 distributions ship without .hi docs
1221
- -- https://gitlab.haskell.org/ghc/ghc/-/issues/20903
1222
- test no broken thLocL57 thLoc " TH Splice Hover"
1223
1219
| otherwise ->
1224
1220
test no yes thLocL57 thLoc " TH Splice Hover"
1225
1221
]
@@ -2061,14 +2057,14 @@ completionDocTests =
2061
2057
]
2062
2058
let expected = " *Imported from 'Prelude'*\n "
2063
2059
test doc (Position 1 8 ) " odd" (Just $ T. length expected) [expected]
2064
- , brokenForMacGhc9 $ brokenForWinGhc9 $ testSession " extern single line doc without '\\ n'" $ do
2060
+ , brokenForMacGhc9 $ brokenForWinGhc90 $ testSession " extern single line doc without '\\ n'" $ do
2065
2061
doc <- createDoc " A.hs" " haskell" $ T. unlines
2066
2062
[ " module A where"
2067
2063
, " foo = no"
2068
2064
]
2069
2065
let expected = " *Imported from 'Prelude'*\n * * *\n\n\n Boolean \" not\"\n "
2070
2066
test doc (Position 1 8 ) " not" (Just $ T. length expected) [expected]
2071
- , brokenForMacGhc9 $ brokenForWinGhc9 $ testSession " extern mulit line doc" $ do
2067
+ , brokenForMacGhc9 $ brokenForWinGhc90 $ testSession " extern mulit line doc" $ do
2072
2068
doc <- createDoc " A.hs" " haskell" $ T. unlines
2073
2069
[ " module A where"
2074
2070
, " foo = i"
@@ -2085,7 +2081,7 @@ completionDocTests =
2085
2081
]
2086
2082
where
2087
2083
brokenForGhc9 = knownBrokenFor (BrokenForGHC [GHC90 , GHC92 , GHC94 , GHC96 ]) " Completion doc doesn't support ghc9"
2088
- brokenForWinGhc9 = knownBrokenFor (BrokenSpecific Windows [GHC90 , GHC92 ]) " Extern doc doesn't support Windows for ghc9.2"
2084
+ brokenForWinGhc90 = knownBrokenFor (BrokenSpecific Windows [GHC90 ]) " Extern doc doesn't support Windows for ghc9.2"
2089
2085
-- https://gitlab.haskell.org/ghc/ghc/-/issues/20903
2090
2086
brokenForMacGhc9 = knownBrokenFor (BrokenSpecific MacOS [GHC90 , GHC92 , GHC94 , GHC96 ]) " Extern doc doesn't support MacOS for ghc9"
2091
2087
test doc pos label mn expected = do
0 commit comments