packages feed

tasty 1.4.0.2 → 1.4.0.3

raw patch · 3 files changed

+11/−2 lines, 3 files

Files

CHANGELOG.md view
@@ -1,6 +1,11 @@ Changes ======= +Version 1.4.0.3+---------------++Fix CPP warning/error `macro expansion producing 'defined' has undefined behavior`+ Version 1.4.0.2 --------------- 
Test/Tasty/Runners/Utils.hs view
@@ -19,7 +19,11 @@ #endif  -- Install handlers only on UNIX-#define INSTALL_HANDLERS defined VERSION_unix+#ifdef VERSION_unix+#define INSTALL_HANDLERS 1+#else+#define INSTALL_HANDLERS 0+#endif  #if INSTALL_HANDLERS import System.Posix.Signals
tasty.cabal view
@@ -2,7 +2,7 @@ --  see http://haskell.org/cabal/users-guide/  name:                tasty-version:             1.4.0.2+version:             1.4.0.3 synopsis:            Modern and extensible testing framework description:         Tasty is a modern testing framework for Haskell.                      It lets you combine your unit tests, golden