aboutsummaryrefslogtreecommitdiff
path: root/Test.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2017-11-14 14:59:51 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2017-11-14 14:59:51 -0400
commit92f36a1d31418e747eeaaaad03aeb85cec939d21 (patch)
tree0013232fca756f278dd44fefc45a18a1a9d35289 /Test.hs
parent1b0e53cd9a1289c2eb7b3b29cb3804e3d61a8744 (diff)
still can't express custom-setup deps
They need unix on non-windows, for Utility.Env, which Build.Configure uses, but cabal can't express that in a custom-setup stanza. To avoid this problem, Utility.Env would need to be moved into unix-compat..
Diffstat (limited to 'Test.hs')
-rw-r--r--Test.hs11
1 files changed, 5 insertions, 6 deletions
diff --git a/Test.hs b/Test.hs
index be814bbb3..424c3aacc 100644
--- a/Test.hs
+++ b/Test.hs
@@ -95,7 +95,6 @@ import qualified Utility.Process
import qualified Utility.Misc
import qualified Utility.InodeCache
import qualified Utility.Env
-import qualified Utility.Env.Set
import qualified Utility.Matcher
import qualified Utility.Exception
import qualified Utility.Hash
@@ -143,7 +142,7 @@ runner = Just go
subenv = "GIT_ANNEX_TEST_SUBPROCESS"
runsubprocesstests opts Nothing = do
pp <- Annex.Path.programPath
- Utility.Env.Set.setEnv subenv "1" True
+ Utility.Env.setEnv subenv "1" True
ps <- getArgs
(Nothing, Nothing, Nothing, pid) <-createProcess (proc pp ps)
exitcode <- waitForProcess pid
@@ -1932,9 +1931,9 @@ ensuretmpdir = do
isolateGitConfig :: IO a -> IO a
isolateGitConfig a = Utility.Tmp.withTmpDir "testhome" $ \tmphome -> do
tmphomeabs <- absPath tmphome
- Utility.Env.Set.setEnv "HOME" tmphomeabs True
- Utility.Env.Set.setEnv "XDG_CONFIG_HOME" tmphomeabs True
- Utility.Env.Set.setEnv "GIT_CONFIG_NOSYSTEM" "1" True
+ Utility.Env.setEnv "HOME" tmphomeabs True
+ Utility.Env.setEnv "XDG_CONFIG_HOME" tmphomeabs True
+ Utility.Env.setEnv "GIT_CONFIG_NOSYSTEM" "1" True
a
cleanup :: FilePath -> IO ()
@@ -2120,7 +2119,7 @@ setTestMode testmode = do
currdir <- getCurrentDirectory
p <- Utility.Env.getEnvDefault "PATH" ""
- mapM_ (\(var, val) -> Utility.Env.Set.setEnv var val True)
+ mapM_ (\(var, val) -> Utility.Env.setEnv var val True)
-- Ensure that the just-built git annex is used.
[ ("PATH", currdir ++ [searchPathSeparator] ++ p)
, ("TOPDIR", currdir)