diff options
author | Will Thompson <will.thompson@collabora.co.uk> | 2011-05-23 17:57:46 +0100 |
---|---|---|
committer | Will Thompson <will.thompson@collabora.co.uk> | 2011-05-23 17:57:46 +0100 |
commit | e3f478d48f77db3b69278188ac294167a46987fe (patch) | |
tree | 839fd3e75a76b62498610174051d08e1ea5c50a6 | |
parent | 2767e913ac7949dcfae06c367bd5560de988bc1c (diff) |
Pass V=0 to `make`
-rwxr-xr-x | tt.hs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 () |