summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Thompson <will.thompson@collabora.co.uk>2011-09-09 13:37:40 +0100
committerWill Thompson <will.thompson@collabora.co.uk>2011-09-09 13:37:40 +0100
commit81c7ac525c22d0880623441998bc313668d3c3ba (patch)
tree26759051b5c9db5607673f762158b5f2e2095464
parente3f478d48f77db3b69278188ac294167a46987fe (diff)
Pass -s when called with no arguments
-rwxr-xr-xtt.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tt.hs b/tt.hs
index 09a6c4b..efc7002 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", "V=0"]
+makeArgs [] [] _ _ _ = return ["check", "-s", "V=0"]
makeArgs tests flags testDir testVar inTree = do
let buildPaths = expand testDir inTree . unprefix testDir
tests' <- concat <$> mapM buildPaths tests