----- Original Message ----- From: "David Chappell" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, November 27, 2002 11:38 Subject: Re: Today's IRC log
> > In the meantime, I'm wondering if any of you ant-meisters can tell me if > there is a way to at least get the test code checked in, but excluded > from the test execution. The current behavior seems to be that its mere > existence in the directory structure causes the test to get executed. > If the test fails, the whole build fails (that in itself is an issue). 1. Have a condition like jms.server.present that is set if there is a server 2. in a patternset, include the jms build file only if that condition is set, and include that in the compile 3. Or, pass the flag down to junit and extract it in the test case and only run the test if the server is present. When I commit the offline stuff you'll see these techniques in action;