aboutsummaryrefslogtreecommitdiff
path: root/hypsrc-test/run.hs
diff options
context:
space:
mode:
authorŁukasz Hanuszczak <lukasz.hanuszczak@gmail.com>2015-07-01 01:14:59 +0200
committerŁukasz Hanuszczak <lukasz.hanuszczak@gmail.com>2015-07-01 01:14:59 +0200
commit767569881732c59378fb577d1a2b57b51bc454d0 (patch)
tree40587aab863894ebd583003f11f0c42f61ce04cc /hypsrc-test/run.hs
parent395a9c3941f8b8891cffa5c17e1f6ae414edaa79 (diff)
Create simple script for accepting hyperlinker test case references.
Diffstat (limited to 'hypsrc-test/run.hs')
-rwxr-xr-xhypsrc-test/run.hs25
1 files changed, 4 insertions, 21 deletions
diff --git a/hypsrc-test/run.hs b/hypsrc-test/run.hs
index 5b6b6548..10b6c257 100755
--- a/hypsrc-test/run.hs
+++ b/hypsrc-test/run.hs
@@ -2,13 +2,11 @@
{-# LANGUAGE CPP #-}
-import Control.Applicative
import Control.Monad
import Data.List
import Data.Maybe
-import System.IO
import System.Directory
import System.Environment
import System.Exit
@@ -21,21 +19,6 @@ import Distribution.Simple.Utils hiding (die)
import Utils
-baseDir, rootDir :: FilePath
-baseDir = takeDirectory __FILE__
-rootDir = baseDir </> ".."
-
-srcDir, refDir, outDir, refDir', outDir' :: FilePath
-srcDir = baseDir </> "src"
-refDir = baseDir </> "ref"
-outDir = baseDir </> "out"
-refDir' = refDir </> "src"
-outDir' = outDir </> "src"
-
-haddockPath :: FilePath
-haddockPath = rootDir </> "dist" </> "build" </> "haddock" </> "haddock"
-
-
main :: IO ()
main = do
haddockAvailable <- doesFileExist haddockPath
@@ -107,9 +90,9 @@ diff mdl ref out = do
getAllSrcModules :: IO [FilePath]
getAllSrcModules =
- filter isValid <$> getDirectoryContents srcDir
+ filter isHaskellFile <$> getDirectoryContents srcDir
where
- isValid = (== ".hs") . takeExtension
+ isHaskellFile = (== ".hs") . takeExtension
putHaddockVersion :: IO ()
@@ -128,8 +111,8 @@ putGhcVersion = do
runHaddock :: [String] -> IO ()
runHaddock args = do
- env <- Just <$> getEnvironment
- handle <- runProcess haddockPath args Nothing env Nothing Nothing Nothing
+ menv <- Just <$> getEnvironment
+ handle <- runProcess haddockPath args Nothing menv Nothing Nothing Nothing
waitForSuccess handle $ "Failed to invoke haddock with " ++ show args