Skip to content

Commit 6a732b5

Browse files
committed
Drop specific skipping for ghc-8.10.1
1 parent 6030e86 commit 6a732b5

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

ghcide/test/exe/Main.hs

-7
Original file line numberDiff line numberDiff line change
@@ -3148,7 +3148,6 @@ checkFileCompiles fp diag =
31483148

31493149
pluginSimpleTests :: TestTree
31503150
pluginSimpleTests =
3151-
ignoreTest8101 "GHC #18070" $
31523151
ignoreInWindowsForGHC88And810 $
31533152
testSessionWithExtraFiles "plugin" "simple plugin" $ \dir -> do
31543153
_ <- openDoc (dir </> "KnownNat.hs") "haskell"
@@ -3163,7 +3162,6 @@ pluginSimpleTests =
31633162

31643163
pluginParsedResultTests :: TestTree
31653164
pluginParsedResultTests =
3166-
ignoreTest8101 "GHC #18070" $
31673165
ignoreInWindowsForGHC88And810 $
31683166
testSessionWithExtraFiles "plugin" "parsedResultAction plugin" $ \dir -> do
31693167
_ <- openDoc (dir</> "RecordDot.hs") "haskell"
@@ -4026,11 +4024,6 @@ pattern R x y x' y' = Range (Position x y) (Position x' y')
40264024
xfail :: TestTree -> String -> TestTree
40274025
xfail = flip expectFailBecause
40284026

4029-
ignoreTest8101 :: String -> TestTree -> TestTree
4030-
ignoreTest8101
4031-
| GHC_API_VERSION == ("8.10.1" :: String) = ignoreTestBecause
4032-
| otherwise = const id
4033-
40344027
ignoreInWindowsBecause :: String -> TestTree -> TestTree
40354028
ignoreInWindowsBecause = if isWindows then ignoreTestBecause else (\_ x -> x)
40364029

0 commit comments

Comments
 (0)