[Haskell-cafe] HPC of several modules?

2008-01-16 Thread Magnus Therning
How do I get reports on coverage of all modules in a program? The documentation I've found http://blog.unsafeperformio.com/?p=18 and http://www.haskell.org/ghc/docs/latest/html/users_guide/hpc.html both do coverage of a single module. Going the naive route of first making sure there are no

Re: [Haskell-cafe] HPC of several modules?

2008-01-16 Thread Neil Mitchell
Hi and .hi files) then running 'ghc --make -fhpc MyTool.hs' succeeds in That's all I do. 'hpc6 markup MyTool' includes only Main I do: hpc markup MyTool.tix Then it all Just Works (TM). What is hpc6? I am using the version supplied with GHC 6.8. Thanks Neil

Re: [Haskell-cafe] HPC of several modules?

2008-01-16 Thread Christopher Lane Hinson
What is hpc6? I am using the version supplied with GHC 6.8. This is just hpc on debian/ubuntu systems, where all the binaries have symlinks that append a version number. ghc6.8 on debian doesn't provide hpc without the 6. I just reportbugged this. --Lane