|
From: Loren R. <lo...@gm...> - 2004-09-17 21:50:11
|
I have occasionally seen intermitant assertion failures, though not in that particular place. I agree that something asychronous is a likely culprit. A few lines above the failing assertion, you'll see that the thread waits for the autobuild to complete (autobuilding apparently runs asynchronously on another thread). Perhaps there's yet another thread doing work here that we don't know about. It's of course not a solution, but it would be instructive to put the test thread asleep for several seconds just before this assertion. One thing I'll do over the weekend or on Monday is see if I can get the debugger to tell me what threads are running, or maybe put some breakpoints in the bean model code and see it's being modified asynchronously. On Fri, 17 Sep 2004 17:58:50 +0100, Watkins, David <dav...@fa...> wrote: > Loren, > > Just checked out the new project and am up and testing! > > However it is behaving a little strangely - Most of the time everything > works and I get the green bar, but sometimes (<10%) I get a red bar > (always with the same trace) > > junit.framework.AssertionFailedError > at junit.framework.Assert.fail(Assert.java:47) > at junit.framework.Assert.assertTrue(Assert.java:20) > at junit.framework.Assert.assertTrue(Assert.java:27) > at > org.springframework.ide.test.NatureTests.testNatureAddAndRemove(NatureTe > sts.java:70) > ....[snip].... > > Not 100% sure whats going on, I'm guessing that sometimes the model is > not being updated with the project before that line of code runs. This > would tally with some of the things I've seen with the refactoring stuff > I've been working on.... > > Cheers, > dw > > > > > > -----Original Message----- > > From: spr...@li... > > [mailto:spr...@li...] > > On Behalf Of Loren Rosen > > Sent: 17 September 2004 17:34 > > To: spr...@li... > > Subject: [Springide-eclip-developer] test package checked in > > > > I've checked in the beginnings of the test package, as a > > separate CVS module. (Problem earlier was I was somehow using > > the pserver protocol to talk to sourceforge instead of extssh.) > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one > > of 170 Project Admins to receive an Apple iPod Mini FREE for > > your judgement on who ports your project to Linux PPC the > > best. Sponsored by IBM. > > Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php > > _______________________________________________ > > Springide-eclip-developer mailing list > > Spr...@li... > > https://lists.sourceforge.net/lists/listinfo/springide-eclip-developer > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170 > Project Admins to receive an Apple iPod Mini FREE for your judgement on > who ports your project to Linux PPC the best. Sponsored by IBM. > Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php > _______________________________________________ > Springide-eclip-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springide-eclip-developer > |