aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vogt <vogt.adam@gmail.com>2014-05-03 07:46:29 +0200
committerAdam Vogt <vogt.adam@gmail.com>2014-05-03 07:46:29 +0200
commitf9cef5a2c4fe643f2d2230e3f027e8c9884c7cdb (patch)
treeed5db33f1a85dcaf2919d2459156f51c2a4a5834
parentee327111f3aa5591b3fc7236154cc395023962fb (diff)
downloadxmonad-f9cef5a2c4fe643f2d2230e3f027e8c9884c7cdb.tar.gz
xmonad-f9cef5a2c4fe643f2d2230e3f027e8c9884c7cdb.tar.xz
xmonad-f9cef5a2c4fe643f2d2230e3f027e8c9884c7cdb.zip
make cabal test show a FAIL when at least one test fails
Ignore-this: b603ea6350e50cb9197f3a22fac32eae darcs-hash:20140503054629-1499c-6af82516b153555d2dfad056c7114447b4d8f3cb.gz
-rw-r--r--tests/Properties.hs12
1 files changed, 10 insertions, 2 deletions
diff --git a/tests/Properties.hs b/tests/Properties.hs
index 120e950..b5762d7 100644
--- a/tests/Properties.hs
+++ b/tests/Properties.hs
@@ -21,15 +21,23 @@ import Properties.Layout.Tall
import System.Environment
import Text.Printf
+import Control.Monad
+import Control.Applicative
main :: IO ()
main = do
arg <- fmap (drop 1) getArgs
let n = if null arg then 100 else read $ head arg
args = stdArgs { maxSuccess = n, maxSize = 100 }
- qc = quickCheckWithResult args
+ qc t = do
+ c <- quickCheckWithResult args t
+ case c of
+ Success {} -> return True
+ _ -> return False
perform (s, t) = printf "%-35s: " s >> qc t
- mapM_ perform tests
+ n <- length . filter not ok <$> mapM perform tests
+ unless (n == 0) (error (show n ++ " test(s) failed"))
+
tests =