1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
|
{-# LANGUAGE CPP #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TupleSections #-}
-- | Use "runhaskell Setup.hs test" or "cabal test" to run these tests.
module Main where
-- import Language.Haskell.GHC.ExactPrint.Utils ( showGhc )
import Control.Monad
import System.Directory
import System.FilePath
import System.IO
import System.Exit
import Data.List
import qualified Data.Set as Set
import System.IO.Silently
import Test.Common
import Test.NoAnnotations
import Test.Transform
import Test.HUnit
-- import Debug.Trace
-- ---------------------------------------------------------------------
data GHCVersion = GHC710 | GHC80 | GHC82 | GHC84 | GHC86
deriving (Eq, Ord, Show)
ghcVersion :: GHCVersion
ghcVersion =
#if __GLASGOW_HASKELL__ > 804
GHC86
#elif __GLASGOW_HASKELL__ > 802
GHC84
#elif __GLASGOW_HASKELL__ > 800
GHC82
#elif __GLASGOW_HASKELL__ >= 711
GHC80
#else
GHC710
#endif
-- | Directories to automatically find roundtrip tests
testDirs :: [FilePath]
testDirs =
case ghcVersion of
GHC710 -> ["ghc710-only","ghc710", "vect"]
GHC80 -> [ "ghc710", "ghc80", "vect"]
GHC82 -> ["pre-ghc86", "ghc710", "ghc80", "ghc82", "vect"]
GHC84 -> ["pre-ghc86", "ghc710", "ghc80", "ghc82", "ghc84", "vect" ]
GHC86 -> [ "ghc710", "ghc80", "ghc82", "ghc84", "ghc86" ]
-- GHC86 -> [ "ghc710", "ghc80", "ghc82", "ghc84"]
-- GHC86 -> ["ghc86-copied"]
-- GHC86 -> ["ghc86"]
-- ---------------------------------------------------------------------
main :: IO ()
main = hSilence [stderr] $ do
print ghcVersion
tests <- mkTests
cnts <- fst <$> runTestText (putTextToHandle stdout True) tests
putStrLn $ show cnts
if errors cnts > 0 || failures cnts > 0
then exitFailure
else return () -- exitSuccess
transform :: IO ()
transform = hSilence [stderr] $ do
cnts <- fst <$> runTestText (putTextToHandle stdout True) transformTests
putStrLn $ show cnts
if errors cnts > 0 || failures cnts > 0
then exitFailure
else return () -- exitSuccess
-- ---------------------------------------------------------------------
findTests :: IO Test
findTests = testList "Round-trip tests" <$> mapM (findTestsDir id mkParserTest) testDirs
findPrettyTests :: IO Test
findPrettyTests =
testList "Default Annotations round-trip tests"
<$> mapM (findTestsDir filterPrettyRoundTrip mkPrettyRoundtrip) testDirs
-- | Filter out tests that are known to fail, for particular compilers
filterPrettyRoundTrip :: [FilePath] -> [FilePath]
filterPrettyRoundTrip fps = sort $ Set.toList $ Set.difference (Set.fromList fps) skipped
-- filterPrettyRoundTrip fps = error $ "filterPrettyRoundTrip:fps=" ++ show fps
where
#if __GLASGOW_HASKELL__ > 800
-- GHC 8.2
skipped = Set.empty
#elif __GLASGOW_HASKELL__ >= 711
-- GHC 8.0
skipped = Set.fromList
[
-- testPrefix </> "ghc80" </> "MultiQuote.hs"
"MultiQuote.hs"
, "TestUtils.hs"
, "T10689a.hs"
, "Zwaluw.hs"
, "determ004.hs"
]
#else
-- GHC 7.10
skipped = Set.empty
#endif
findTestsDir :: ([FilePath] -> [FilePath]) -> (FilePath -> FilePath -> Test) -> FilePath -> IO Test
findTestsDir filterFn mkTestFn dir = do
let fp = testPrefix </> dir
fs <- getDirectoryContents fp
let testFiles = sort $ filter (".hs" `isSuffixOf`) fs
return $ testList dir (map (\fn -> TestLabel fn (mkTestFn dir fn)) $ filterFn testFiles)
listTests :: IO ()
listTests = do
let
ftd dir = do
let fp = testPrefix </> dir
fs <- getDirectoryContents fp
let testFiles = sort $ filter (".hs" `isSuffixOf`) fs
return (zip [0::Integer ..] testFiles)
files <- mapM ftd testDirs
putStrLn $ "round trip tests:" ++ show (zip testDirs files)
mkTests :: IO Test
mkTests = do
-- listTests
roundTripTests <- findTests
prettyRoundTripTests <- findPrettyTests
return $ TestList [
internalTests,
roundTripTests
,
transformTests
, failingTests
, noAnnotationTests
,
prettyRoundTripTests
]
-- Tests that will fail until https://phabricator.haskell.org/D907 lands in a
-- future GHC
failingTests :: Test
failingTests = testList "Failing tests"
[
-- Tests requiring future GHC modifications
mkTestModBad "InfixOperator.hs"
#if __GLASGOW_HASKELL__ > 802
#elif __GLASGOW_HASKELL__ > 800
, mkTestModBad "overloadedlabelsrun04.hs"
#elif __GLASGOW_HASKELL__ > 710
, mkTestModBad "overloadedlabelsrun04.hs"
, mkTestModBad "TensorTests.hs" -- Should be fixed in GHC 8.2
, mkTestModBad "List2.hs" -- Should be fixed in GHC 8.2
#else
, mkTestModBad "CtorOp.hs" -- Should be fixed in GHC 8.4
, mkTestModBad "UnicodeSyntax.hs"
, mkTestModBad "UnicodeRules.hs"
, mkTestModBad "Deprecation.hs"
, mkTestModBad "MultiLineWarningPragma.hs"
#endif
]
mkParserTest :: FilePath -> FilePath -> Test
mkParserTest dir fp = mkParsingTest roundTripTest dir fp
-- ---------------------------------------------------------------------
formatTT :: ([([Char], Bool)], [([Char], Bool)]) -> IO ()
formatTT (ts, fs) = do
when (not . null $ tail ts) (do
putStrLn "Pass"
mapM_ (putStrLn . fst) (tail ts)
)
when (not . null $ fs) (do
putStrLn "Fail"
mapM_ (putStrLn . fst) fs)
tr :: IO (Counts,Int)
tr = hSilence [stderr] $ do
prettyRoundTripTests <- findPrettyTests
runTestText (putTextToHandle stdout True) prettyRoundTripTests
tt' :: IO (Counts,Int)
tt' = runTestText (putTextToHandle stdout True) $ TestList [
-- mkPrettyRoundtrip "ghc82" "TensorTests.hs"
mkParserTest "ghc710" "GADTContext.hs"
-- mkParserTest "ghc86" "deriving-via-compile.hs"
-- mkParserTest "pre-ghc86" "TensorTests.hs"
-- , mkParserTest "pre-ghc86" "Webhook.hs"
-- , mkParserTest "ghc710" "RdrNames.hs"
-- mkPrettyRoundtrip "ghc86" "BinDU.hs"
-- , mkPrettyRoundtrip "ghc86" "Dial.hs"
-- mkParserTest "ghc84" "Types.hs"
-- , mkPrettyRoundtrip "ghc80" "export-type.hs"
-- Needs GHC changes
-- mkParserTest "failing" "CtorOp.hs"
-- mkParserTest "failing" "InfixOperator.hs"
]
testsTT :: Test
testsTT = TestList
[
mkParserTest "ghc710" "Cpp.hs"
, mkParserTest "ghc710" "DroppedDoSpace.hs"
]
tt :: IO ()
-- tt = hSilence [stderr] $ do
tt = do
cnts <- fst <$> runTestText (putTextToHandle stdout True) testsTT
putStrLn $ show cnts
if errors cnts > 0 || failures cnts > 0
then exitFailure
else return () -- exitSuccess
-- ---------------------------------------------------------------------
ii :: IO ()
ii = do
cnts <- fst <$> runTestText (putTextToHandle stdout True) internalTests
putStrLn $ show cnts
if errors cnts > 0 || failures cnts > 0
then exitFailure
else return () -- exitSuccess
internalTests :: Test
internalTests = testList "Internal tests"
[
-- testCleanupOneLine
]
{-
testCleanupOneLine :: Test
testCleanupOneLine = do
let
makeCase n = (show n
,(T.replicate n " ") <> "\t|" <> T.replicate n " " <> "\t"
,(T.replicate 8 " " <> "|"))
mkTest n = TestCase $ assertEqual name outp (cleanupOneLine inp)
where (name,inp,outp) = makeCase n
testList "cleanupOneLine" $ map mkTest [1..7]
-}
-- ---------------------------------------------------------------------
pwd :: IO FilePath
pwd = getCurrentDirectory
cd :: FilePath -> IO ()
cd = setCurrentDirectory
|