diff options
Diffstat (limited to 'haddock-test')
| -rw-r--r-- | haddock-test/src/Test/Haddock/Config.hs | 7 | 
1 files changed, 0 insertions, 7 deletions
| diff --git a/haddock-test/src/Test/Haddock/Config.hs b/haddock-test/src/Test/Haddock/Config.hs index 0c9bdb19..4f6bb818 100644 --- a/haddock-test/src/Test/Haddock/Config.hs +++ b/haddock-test/src/Test/Haddock/Config.hs @@ -83,7 +83,6 @@ cfgResDir = dcfgResDir . cfgDirConfig  data Flag      = FlagHaddockPath FilePath -    | FlagGhcPath FilePath      | FlagHaddockOptions String      | FlagHaddockStdOut FilePath      | FlagDiffTool FilePath @@ -96,10 +95,6 @@ flagsHaddockPath :: [Flag] -> Maybe FilePath  flagsHaddockPath flags = mlast [ path | FlagHaddockPath path <- flags ] -flagsGhcPath :: [Flag] -> Maybe FilePath -flagsGhcPath flags = mlast [ path | FlagGhcPath path <- flags ] - -  flagsHaddockOptions :: [Flag] -> [String]  flagsHaddockOptions flags = concat      [ words opts | FlagHaddockOptions opts <- flags ] @@ -117,8 +112,6 @@ options :: [OptDescr Flag]  options =      [ Option [] ["haddock-path"] (ReqArg FlagHaddockPath "FILE")          "path to Haddock executable to exectue tests with" -    , Option [] ["ghc-path"] (ReqArg FlagGhcPath "FILE") -        "path to GHC executable"      , Option [] ["haddock-options"] (ReqArg FlagHaddockOptions "OPTS")          "additional options to run Haddock with"      , Option [] ["haddock-stdout"] (ReqArg FlagHaddockStdOut "FILE") | 
