summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Thompson <will.thompson@collabora.co.uk>2011-05-23 17:57:46 +0100
committerWill Thompson <will.thompson@collabora.co.uk>2011-05-23 17:57:46 +0100
commite3f478d48f77db3b69278188ac294167a46987fe (patch)
tree839fd3e75a76b62498610174051d08e1ea5c50a6
parent2767e913ac7949dcfae06c367bd5560de988bc1c (diff)
Pass V=0 to `make`
-rwxr-xr-xtt.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tt.hs b/tt.hs
index 5b9eb1a..09a6c4b 100755
--- a/tt.hs
+++ b/tt.hs
@@ -97,7 +97,7 @@ rep Forever = forever
rep (Times n) = replicateM_ n
makeArgs :: [String] -> [Flag] -> FilePath -> String -> Bool -> IO [String]
-makeArgs [] [] _ _ _ = return ["check"]
+makeArgs [] [] _ _ _ = return ["check", "V=0"]
makeArgs tests flags testDir testVar inTree = do
let buildPaths = expand testDir inTree . unprefix testDir
tests' <- concat <$> mapM buildPaths tests
@@ -106,7 +106,7 @@ makeArgs tests flags testDir testVar inTree = do
-- two different sets of tests.
, "TWISTED_SEPARATE_TESTS="
]
- return $ [ "check-twisted", "-s", "-C", testDir ] ++ t ++ flags
+ return $ [ "check-twisted", "-s", "-C", testDir, "V=0" ] ++ t ++ flags
runTests :: FilePath -> String -> Bool -> [String] -> [Flag] -> Repetitions
-> IO ()