Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to trouble shoot a JUnit. In the source code, I have set break point in two places: 1) in a line where a static member is initialized 2) the first line of one of the test cases.

The debugger stops in the static field initializing line. But it doesn't stop in the test case. No matter where I set the break point in the test case, the debugger doesn't stop there. I know for sure that the test case is executed as I can see the log messages that I have added appear in the log.

Any help would be greatly appreciated.

I am using Eclipse Galileo and JUnit4 launcher.

share|improve this question
Can you also add information about which version of JUnit and the JRE you are using? I believe that is helpful in this context. – Vineet Reynolds Sep 3 '09 at 1:05
The JDK in use is more important by the way (there are some messed JDKs that could cause this). Please ignore the query on the version of JUnit. – Vineet Reynolds Sep 3 '09 at 1:11
Sorry I should have included that. JDK 1.6 update 14. – Roy Sep 3 '09 at 1:34
Hmm try downgrading to JDK 5, or a lower version of JDK 6 (definitely not 13), or switch to parallel scavenging GC. – Vineet Reynolds Sep 3 '09 at 1:39

5 Answers

up vote 23 down vote accepted

This could be related to one of the bugs in JDK 6 Update 14, as indicated in the release notes for JDK 6 update 15.

If this indeed turns out to be the issue, you should move to a higher version of the JDK (that's no guarantee though, since fixes have been released against 6u16, 6u18 and 7b1). The best bet is to use -XX:+UseParallelGC flag. Increasing the size of the minimum and maximum heap size, to delay the first GC, bring temporary relief.

By the way, use this bug report in Eclipse to track how others have been faring.

share|improve this answer
I upgraded to JDK 1.6 update 16. Now it stops at all the break points that I have set. Thanks a lot for your help. – Roy Sep 3 '09 at 2:43
You're welcome. u16 seems to be the release where this was fixed to a good enough extent, despite u15's release notes. – Vineet Reynolds Sep 3 '09 at 2:44
Thanks @Vineet - I was pulling my hair out over this one :-) – Jim Garrison Dec 1 '09 at 17:13

Make sure, under Run > Debug Configurations, that 'Stop in main' is selected, if applicable to your situation.

share|improve this answer
Please be sure to read previous responses before posting. The problem was their jvm version .. and was solved three years ago. Best not to revive old threads unless your response contributes something significant, that was not already covered in previous answers. – Leigh Jun 15 '12 at 2:53
2  
Thanks. @Answerer your answer solved my problem. It's strange that "Stop in main" was unset. – Yu Shen Dec 8 '12 at 6:09
It appears that his answer did contribute something significant that was not already covered in previous answers :) – scubbo Mar 20 at 11:53

Usually when this happens to me (rare but it does) means that the code being executed is different than the code in the editor. It will happen from time to time for Eclipse that the built classes and the code in editor are out of sync. When that happens I get all sort of weird debugger behavior (debugging empty lines, skipping lines of codes etc).

Restarting Eclipse, clean all projects and rebuild everything usually clears things up. I had also the Maven plugins (older versions... had not had it for a while now) that had a tendency to do that too.

Otherwise it might be a bug, maybe the one Vineet stated,

Hope this helps

share|improve this answer
Yea, what you've stated happens more in IDEs that do not automatically recompile code. Oracle JDeveloper (from personal experience) and to a lesser extent (Netbeans) have been found wanting. – Vineet Reynolds Sep 3 '09 at 5:03
Good advice. Not said enough. Sometimes we over-think the problem and it's just the system out of synch. Such as it is with rebooting a computer for trouble shooting simple issues. – Matthew Doucette Jun 25 '12 at 19:18

Is your code compiled with the -g option turned on to generate the debug information in the .class file? That's required, of course.

share|improve this answer
Yes it is compiled with -g option. – Roy Sep 3 '09 at 0:39

Fix could be as simple as clicking run/skip all breakpoints. Worked for me.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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