In case you just run "make htools/test" to recompile the unittests,
the old .tix file should be removed, otherwise you get the message
about inconsistent tick boxes. Let's make the compilation process
automatically remove this, for easier testing.
---
Makefile.am | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index 9ee0eea..8949cd9 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -515,6 +515,7 @@ $(HS_ALL_PROGS): %: %.hs $(HS_LIB_SRCS) $(HS_BUILT_SRCS)
Makefile
echo "Error: cannot run unittests without the QuickCheck library (see
devnotes.rst)" 1>&2; \
exit 1; \
fi
+ rm -f $(@:htools/%=%).tix
BINARY=$(@:htools/%=%); $(GHC) --make \
$(HFLAGS) \
$(HTOOLS_NOCURL) $(HTOOLS_PARALLEL3) \
--
1.7.9.1