summaryrefslogtreecommitdiff
path: root/Build/TestConfig.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2017-10-25 17:24:03 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2017-10-25 17:24:03 -0400
commite8b83454e15b02357659ab7ec9f9d342cd484c05 (patch)
treebc7824cb0b63c3d8589f4e982fd061f84c41d9fa /Build/TestConfig.hs
parent495c792d6d3072b2d3703d734173ac4aa6c4d3f8 (diff)
allow building w/o rsync installed
rsync is needed to run, but may not be on the build machine; that's ok
Diffstat (limited to 'Build/TestConfig.hs')
-rw-r--r--Build/TestConfig.hs12
1 files changed, 0 insertions, 12 deletions
diff --git a/Build/TestConfig.hs b/Build/TestConfig.hs
index 79979c5fb..f6ad2df6f 100644
--- a/Build/TestConfig.hs
+++ b/Build/TestConfig.hs
@@ -61,18 +61,6 @@ runTests (TestCase tname t : ts) = do
rest <- runTests ts
return $ c:rest
-{- Tests that a command is available, aborting if not. -}
-requireCmd :: ConfigKey -> String -> Test
-requireCmd k cmdline = do
- ret <- testCmd k cmdline
- handle ret
- where
- handle r@(Config _ (BoolConfig True)) = return r
- handle r = do
- testEnd r
- error $ "** the " ++ c ++ " command is required"
- c = head $ words cmdline
-
{- Checks if a command is available by running a command line. -}
testCmd :: ConfigKey -> String -> Test
testCmd k cmdline = do