[Test] Use git to clean test/data/
This commit is contained in:
parent
05d87f4175
commit
f8acb77e6b
25
test/Main.hs
25
test/Main.hs
@ -4,7 +4,6 @@ import Dir
|
|||||||
|
|
||||||
import Control.Exception as E
|
import Control.Exception as E
|
||||||
import Control.Monad (void)
|
import Control.Monad (void)
|
||||||
import Data.List
|
|
||||||
import Language.Haskell.GhcMod (debugInfo)
|
import Language.Haskell.GhcMod (debugInfo)
|
||||||
import System.Process
|
import System.Process
|
||||||
import System.Environment
|
import System.Environment
|
||||||
@ -29,31 +28,15 @@ main = do
|
|||||||
, "test/data/duplicate-pkgver/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d"]
|
, "test/data/duplicate-pkgver/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d"]
|
||||||
genGhcPkgCache dir = system $ "ghc-pkg recache --force -f" ++ dir
|
genGhcPkgCache dir = system $ "ghc-pkg recache --force -f" ++ dir
|
||||||
|
|
||||||
genSandboxCfg `mapM_` sandboxes
|
let cleanCmd = "git clean -dxf test/data/"
|
||||||
genGhcPkgCache `mapM_` pkgDirs
|
|
||||||
|
|
||||||
let caches = [ "setup-config"
|
|
||||||
, "setup-config.ghc-mod.cabal-helper"
|
|
||||||
, "setup-config.ghc-mod.cabal-components"
|
|
||||||
, "setup-config.ghc-mod.resolved-components"
|
|
||||||
, "setup-config.ghc-mod.package-options"
|
|
||||||
, "setup-config.ghc-mod.package-db-stack"
|
|
||||||
, "ghc-mod.cache"
|
|
||||||
]
|
|
||||||
findExp = unwords $ intersperse "-o " $ concat [
|
|
||||||
stackWorkFindExp,
|
|
||||||
cachesFindExp
|
|
||||||
]
|
|
||||||
cachesFindExp = map ("-name "++) caches
|
|
||||||
stackWorkFindExp = ["-name .stack-work -type d"]
|
|
||||||
|
|
||||||
cleanCmd = "find test \\( "++ findExp ++" \\) -exec rm -r {} \\;"
|
|
||||||
|
|
||||||
putStrLn $ "$ " ++ cleanCmd
|
putStrLn $ "$ " ++ cleanCmd
|
||||||
void $ system cleanCmd
|
void $ system cleanCmd
|
||||||
void $ system "cabal --version"
|
void $ system "cabal --version"
|
||||||
void $ system "ghc --version"
|
void $ system "ghc --version"
|
||||||
|
|
||||||
|
genSandboxCfg `mapM_` sandboxes
|
||||||
|
genGhcPkgCache `mapM_` pkgDirs
|
||||||
|
|
||||||
let stackDir = "test/data/stack-project"
|
let stackDir = "test/data/stack-project"
|
||||||
void $ withDirectory_ stackDir $ do
|
void $ withDirectory_ stackDir $ do
|
||||||
let ghcver = let gvn = show (__GLASGOW_HASKELL__ :: Int)
|
let ghcver = let gvn = show (__GLASGOW_HASKELL__ :: Int)
|
||||||
|
Loading…
Reference in New Issue
Block a user