Claus Reinke wrote:
New unexpected test failures:

   ..
   ghci025          1  x86 Windows head fast

i had a quick look, and this is because head fast runs
the testsuite without cleanup (unlike validate), meaning that there are still some compiled modules from earlier tests lying around when ghci025 is reached, leading to:

   +module 'D' is not interpreted

in this test. one could fix this particular test by adding
   :set -fforce-recomp

to the script, but it makes me wonder whether this
lack of cleanup is intended?

cleanup should be optional, and it's only really necessary if you're worried about disk space. So in this case the lack of cleanup has caught a bug in the testsuite, which is good.

(also, I suspect the cleanup support is far from complete, and it needs a lot of work to be multi-thread-safe)

Cheers,
        Simon

_______________________________________________
Cvs-ghc mailing list
Cvs-ghc@haskell.org
http://www.haskell.org/mailman/listinfo/cvs-ghc

Reply via email to