up vote 19 down vote favorite
3
share [g+] share [fb]

I have used the ghci debugger but would really prefer if it was somewhat integrated with a text editor to simplify the process of setting breakpoints. It should probably not strictly evaluate every visible variable but at least simplify the process of looking at the local state.

I recently found the trace function which has been helpful by allowing debug printouts from otherwise hard places.

link|improve this question

62% accept rate
1  
Probably you've already read it, but just for reference: haskell.org/haskellwiki/Debugging – jetxee Jan 8 '10 at 17:24
feedback

4 Answers

A good way to debug Haskell code is to write and test algebraic laws using QuickCheck and SmallCheck. There have been several Haskell debuggers including Hat, Hood, and Freya, but none of them have been perceived as sufficiently valuable to be worth maintaining for a long time.

When it's Haskell, you have to think differently about how to do things. The ICFP paper on the QuickCheck page has some good examples to get you started. If you want a real-world example xmonad is extensively debugged using QuickCheck.

link|improve this answer
1  
The quick check link is giving a 403 error. (Oct. 05, 03:38:04 UTC) If this is not a transient error can someone post a new link – John F. Miller Oct 5 '10 at 3:38
Here's an updated quickcheck link; (www.cs -> www.cse): cse.chalmers.se/~rjmh/QuickCheck – SuperElectric Nov 18 '10 at 4:43
4  
Can I respectfully note that there's a difference between debugging and testing? Debugging is finding the cause of a bug, whereas testing is searching for the existence of bugs. – kristianp Aug 29 '11 at 4:28
feedback

Yes, a frontend for the GHCi debugger would be a good thing. Maybe we'll get something done during the next Hackathon. However, in the mean time:

Alternatively, Haskell lends itself nicely to bottom-up testing using QuickCheck. I.e., test your components individually, then put them together. If your code is pure this often Just Works.

link|improve this answer
feedback

As a side note, be aware that Debug.trace will NOT be your friend when debugging multithreaded programs.

Testing is the way to go in the long run.

link|improve this answer
feedback

For my own purposes I find that it's a combination of factors.

  1. Write easy to debug functional code, this means to make sure your functions are relatively small (5-20 lines) and that they only do one clearly defined thing each.
  2. Use HUnit to define test cases that will bring out your problems.

As seen in other answers, a lot of people love QuickCheck. I've found it difficult to define meaningful QuickCheck test cases for at least some of my code so generally make more use of standard unit tests. That being said, there's an excellent introduction to using QuickCheck in Chapter 11 of Real World Haskell.

Should you find yourself using both QuickCheck and HUnit, you may want to look into test-framework.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.