Re: [JBoss-dev] Where's the nightly build?

2001-08-29 Thread Jason Dillon

This is mostly done, though I won't know for a while if it actually works.
The only think that it needs is a way to wait until the server has become
active (it is ready to serve) or timeout after x.

This should be fairly straight forward, just a tiny polling client.

 start timer
 attempt to connect, loop until connected
 lookup come mbean (not sure which is best at the moment)
 ask it if its done, if not sleep else exit

That would be really helpful when managing scripts which need to background
the vm, but eventually need to know that it is working as configured.

A side note, this could be handled by a seperate vm, which had the sole job
of managing other jboss instances on the same machine.  it would run a
stripped down jboss, with a spawenr bean, which would accept jmx, rmi, html,
telnet, whatever requests to start, stop, pool...

Write a simple client-side api & helper objects and you've got yourself a
set sweet tool to manage clusters of jboss instances.

throw a jython or dynamicjava (any bsf really) on top of that and you have a
simple way to control a huge group of such jboss nodes.

--jason


On Thu, 30 Aug 2001, David Jencks wrote:

> On 2001.08.30 00:48:14 -0400 Jason Dillon wrote:
> > > > checkout jboss-all from cvs
> > > > build
> > > > start (in separate jvm)
> > > > run tests
> > > > email results
> > > > stop
> >
> > chicken or the egg.
> >
> > do you mean to update the current workspace, clone the current workspace,
> > or get a workspace without already having one?
> I was thinking new workspace  -- I guess I left out the rmdir jboss-all
> step.
> Well, I mostly want an exact copy of cvs.  I'm _sure_ i'll get one if I rm
> everything there already and checkout fresh.  If you think cvs update -d is
> accurate enough that's ok too.  Then you need to completely kill the output
> directories though -- it might be simpler just to do a whole new checkout.
> >
> > the rest is peanuts.
>
> For you, I thought it would be ;-)
>
> btw, do you see any value in adding the depend task before each compile?  I
> found it useful on another project.
>
> david jencks
> >
> > --jason
> >
> >
> > ___
> > Jboss-development mailing list
> > [EMAIL PROTECTED]
> > http://lists.sourceforge.net/lists/listinfo/jboss-development
> >
> >
>
> ___
> Jboss-development mailing list
> [EMAIL PROTECTED]
> http://lists.sourceforge.net/lists/listinfo/jboss-development
>


___
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development



Re: [JBoss-dev] Where's the nightly build?

2001-08-29 Thread Jason Dillon

> btw, do you see any value in adding the depend task before each compile?  I
> found it useful on another project.

I haven't used depend yet.  Is it fast?  Can you send me a snippet?

--jason


___
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development



Re: [JBoss-dev] Where's the nightly build?

2001-08-29 Thread David Jencks

On 2001.08.30 00:48:14 -0400 Jason Dillon wrote:
> > > checkout jboss-all from cvs
> > > build
> > > start (in separate jvm)
> > > run tests
> > > email results
> > > stop
> 
> chicken or the egg.
> 
> do you mean to update the current workspace, clone the current workspace,
> or get a workspace without already having one?
I was thinking new workspace  -- I guess I left out the rmdir jboss-all
step.
Well, I mostly want an exact copy of cvs.  I'm _sure_ i'll get one if I rm
everything there already and checkout fresh.  If you think cvs update -d is
accurate enough that's ok too.  Then you need to completely kill the output
directories though -- it might be simpler just to do a whole new checkout.
> 
> the rest is peanuts.

For you, I thought it would be ;-)

btw, do you see any value in adding the depend task before each compile?  I
found it useful on another project.

david jencks
> 
> --jason
> 
> 
> ___
> Jboss-development mailing list
> [EMAIL PROTECTED]
> http://lists.sourceforge.net/lists/listinfo/jboss-development
> 
> 

___
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development



Re: [JBoss-dev] Where's the nightly build?

2001-08-29 Thread Jason Dillon

> > checkout jboss-all from cvs
> > build
> > start (in separate jvm)
> > run tests
> > email results
> > stop

chicken or the egg.

do you mean to update the current workspace, clone the current workspace,
or get a workspace without already having one?

the rest is peanuts.

--jason


___
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development



Re: [JBoss-dev] Where's the nightly build?

2001-08-29 Thread Jason Dillon

> Is there any chance you could come up with a little more ant stuff that
> would (in one target) ...
>
> checkout jboss-all from cvs
> build
> start (in separate jvm)
> run tests
> email results
> stop

Sure, most of this is there, , , , ,  and
 again (for org.jboss.Shutdown).  I have not played with their new
 &  tasks.

I will look into it more tomorrow.

> I could probably come up with this but I think you could probably do it in
> 1/4 the time.

;)

> I agree that the time for the full test run makes it useable only for batch
> "overnight" testing.  To make xprogramming testing possible we need to
> separate the unit tests that do things once in a planned way from the
> stress/load tests that do something 10,000 times.  Who can find the time to
> make this separation???

time?  ha.

> The buildmagic stuff continues to amaze me with how easy it makes the build
> process.

my pleasure =)

--jason


___
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development



Re: [JBoss-dev] Where's the nightly build?

2001-08-29 Thread David Jencks

Is there any chance you could come up with a little more ant stuff that
would (in one target) ...


checkout jboss-all from cvs
build
start (in separate jvm)
run tests
email results
stop

I could probably come up with this but I think you could probably do it in
1/4 the time.


I agree that the time for the full test run makes it useable only for batch
"overnight" testing.  To make xprogramming testing possible we need to
separate the unit tests that do things once in a planned way from the
stress/load tests that do something 10,000 times.  Who can find the time to
make this separation???


The buildmagic stuff continues to amaze me with how easy it makes the build
process.

Thanks

david jencks

On 2001.08.29 16:45:13 -0400 Jason Dillon wrote:
> > get the testsuite going, enforce usage of it through buildmagic, then
> we
> 
> Any thoughts on how you would like that enforced?  I made it easy to run,
> 
>  # Compile
>  ./build/build.sh
> 
>  # Run
>  ./build/build.sh run
> 
>  # Test
>  ./build/build.sh testsuite
> 
> It still takes forever.  If it was quicker, I would suggest making it a
> dependency of release, and change it to halt on errors/failures.  But
> that
> would drive me crazy since it takes so long to run.
> 
> --jason
> 
> 
> ___
> Jboss-development mailing list
> [EMAIL PROTECTED]
> http://lists.sourceforge.net/lists/listinfo/jboss-development
> 
> 

___
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development



RE: [JBoss-dev] Where's the nightly build?

2001-08-29 Thread Jason Dillon

I just switched this to -Ddummy, so it can't cause problems that I ran into
(could have been an ant 1.3'ism, but whatever).  The property is still there
for those who need to add stuff to it as well.

--jason


On Thu, 30 Aug 2001, David Maplesden wrote:

> It should probably be one of the standard options as opposed to the
> non-standard -X ones.  Trouble is all the standard options (except for
> -client under linux) actually do something we don't really want it to do.
> Is there any reason under linux can't it just be empty?  It seems to work
> for me under win2k.
>
> David
>
> > -Original Message-
> > From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, August 30, 2001 12:40 PM
> > To: '[EMAIL PROTECTED]'
> > Subject: RE: [JBoss-dev] Where's the nightly build?
> >
> >
> > Lets change the default to -Xmx128m or something.  Can we
> > assume that users
> > will have a vm that can support 128m?
> >
> > --jason
> >
> >
> > On Thu, 30 Aug 2001, David Maplesden wrote:
> >
> > > Hmmm, mines the same (or very similar) so I looked at the
> > documentation.
> > > -client is a standard option for java under linux but not
> > under win32...
> > > what a pain.
> > >
> > > David
> > >
> > > > -Original Message-
> > > > From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> > > > Sent: Thursday, August 30, 2001 10:30 AM
> > > > To: '[EMAIL PROTECTED]'
> > > > Subject: RE: [JBoss-dev] Where's the nightly build?
> > > >
> > > >
> > > > java -version
> > > > java version "1.3.1"
> > > > Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
> > > > Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
> > > >
> > > > --jason
> > > >
> > > > On Thu, 30 Aug 2001, David Maplesden wrote:
> > > >
> > > > > Cool, I changed to set the max heap size instead and it
> > > > seems to be working
> > > > > (at least the tests have started running, and they are
> > > > taking a long time).
> > > > >
> > > > > I am using the standard vm from Sun's jdk 1.3.1 and it
> > > > doesn't have a
> > > > > -client option...  What vm are you using?
> > > > >
> > > > > Thanks,
> > > > > David
> > > > >
> > > > > > -Original Message-
> > > > > > From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> > > > > > Sent: Thursday, August 30, 2001 9:36 AM
> > > > > > To: '[EMAIL PROTECTED]'
> > > > > > Subject: RE: [JBoss-dev] Where's the nightly build?
> > > > > >
> > > > > >
> > > > > > no -client option?  what vm are you using?  override
> > > > > > junit.jvm.options, that
> > > > > > is where it gets "-client" from.  I think it might need
> > > > > > something, so try
> > > > > > setting the heap size or something.
> > > > > >
> > > > > > --jason
> > > > > >
> > > > > >
> > > > > > On Thu, 30 Aug 2001, David Maplesden wrote:
> > > > > >
> > > > > > > Aaargh, aargh, retraction, I take it back... I think.
> > > > > > >
> > > > > > > I missed something fairly obvious sorry.
> > > > > > >
> > > > > > > However I still can't get it to run though I'm alot closer
> > > > > > than I thought I
> > > > > > > was.
> > > > > > >
> > > > > > > Of course if anyone can get it to run, I would appreciate a
> > > > > > pointer.  All I
> > > > > > > get is a whole lot of these...
> > > > > > >
> > > > > > >  [junit]Running org.jboss.test.bank.test.Main
> > > > > > >  [junit]Unrecognized option: -client
> > > > > > >  [junit]Could not create the Java virtual machine.
> > > > > > >  [junit]TEST org.jboss.test.bank.test.Main FAILED
> > > > > > >  [junit]Running org.jboss.test.bmp.test.Main
> > > > > > >  [junit]Unrecognized option: -client
> > > > > > > 

RE: [JBoss-dev] Where's the nightly build?

2001-08-29 Thread Jason Dillon

I remeber having to have something here, so that the java task could not
think that I was trying to start the class "".  Perhaps a -Ddummy would
work.

--jason


On Thu, 30 Aug 2001, David Maplesden wrote:

> It should probably be one of the standard options as opposed to the
> non-standard -X ones.  Trouble is all the standard options (except for
> -client under linux) actually do something we don't really want it to do.
> Is there any reason under linux can't it just be empty?  It seems to work
> for me under win2k.
>
> David
>
> > -Original Message-
> > From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, August 30, 2001 12:40 PM
> > To: '[EMAIL PROTECTED]'
> > Subject: RE: [JBoss-dev] Where's the nightly build?
> >
> >
> > Lets change the default to -Xmx128m or something.  Can we
> > assume that users
> > will have a vm that can support 128m?
> >
> > --jason
> >
> >
> > On Thu, 30 Aug 2001, David Maplesden wrote:
> >
> > > Hmmm, mines the same (or very similar) so I looked at the
> > documentation.
> > > -client is a standard option for java under linux but not
> > under win32...
> > > what a pain.
> > >
> > > David
> > >
> > > > -Original Message-
> > > > From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> > > > Sent: Thursday, August 30, 2001 10:30 AM
> > > > To: '[EMAIL PROTECTED]'
> > > > Subject: RE: [JBoss-dev] Where's the nightly build?
> > > >
> > > >
> > > > java -version
> > > > java version "1.3.1"
> > > > Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
> > > > Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
> > > >
> > > > --jason
> > > >
> > > > On Thu, 30 Aug 2001, David Maplesden wrote:
> > > >
> > > > > Cool, I changed to set the max heap size instead and it
> > > > seems to be working
> > > > > (at least the tests have started running, and they are
> > > > taking a long time).
> > > > >
> > > > > I am using the standard vm from Sun's jdk 1.3.1 and it
> > > > doesn't have a
> > > > > -client option...  What vm are you using?
> > > > >
> > > > > Thanks,
> > > > > David
> > > > >
> > > > > > -Original Message-
> > > > > > From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> > > > > > Sent: Thursday, August 30, 2001 9:36 AM
> > > > > > To: '[EMAIL PROTECTED]'
> > > > > > Subject: RE: [JBoss-dev] Where's the nightly build?
> > > > > >
> > > > > >
> > > > > > no -client option?  what vm are you using?  override
> > > > > > junit.jvm.options, that
> > > > > > is where it gets "-client" from.  I think it might need
> > > > > > something, so try
> > > > > > setting the heap size or something.
> > > > > >
> > > > > > --jason
> > > > > >
> > > > > >
> > > > > > On Thu, 30 Aug 2001, David Maplesden wrote:
> > > > > >
> > > > > > > Aaargh, aargh, retraction, I take it back... I think.
> > > > > > >
> > > > > > > I missed something fairly obvious sorry.
> > > > > > >
> > > > > > > However I still can't get it to run though I'm alot closer
> > > > > > than I thought I
> > > > > > > was.
> > > > > > >
> > > > > > > Of course if anyone can get it to run, I would appreciate a
> > > > > > pointer.  All I
> > > > > > > get is a whole lot of these...
> > > > > > >
> > > > > > >  [junit]Running org.jboss.test.bank.test.Main
> > > > > > >  [junit]Unrecognized option: -client
> > > > > > >  [junit]Could not create the Java virtual machine.
> > > > > > >  [junit]TEST org.jboss.test.bank.test.Main FAILED
> > > > > > >  [junit]Running org.jboss.test.bmp.test.Main
> > > > > > >  [junit]Unrecognized option: -client
> > > > > > >  [junit]Could not create the Java virt

RE: [JBoss-dev] Where's the nightly build?

2001-08-29 Thread David Maplesden

It should probably be one of the standard options as opposed to the
non-standard -X ones.  Trouble is all the standard options (except for
-client under linux) actually do something we don't really want it to do.
Is there any reason under linux can't it just be empty?  It seems to work
for me under win2k.

David

> -Original Message-
> From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, August 30, 2001 12:40 PM
> To: '[EMAIL PROTECTED]'
> Subject: RE: [JBoss-dev] Where's the nightly build?
> 
> 
> Lets change the default to -Xmx128m or something.  Can we 
> assume that users
> will have a vm that can support 128m?
> 
> --jason
> 
> 
> On Thu, 30 Aug 2001, David Maplesden wrote:
> 
> > Hmmm, mines the same (or very similar) so I looked at the 
> documentation.
> > -client is a standard option for java under linux but not 
> under win32...
> > what a pain.
> >
> > David
> >
> > > -Original Message-
> > > From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> > > Sent: Thursday, August 30, 2001 10:30 AM
> > > To: '[EMAIL PROTECTED]'
> > > Subject: RE: [JBoss-dev] Where's the nightly build?
> > >
> > >
> > > java -version
> > > java version "1.3.1"
> > > Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
> > > Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
> > >
> > > --jason
> > >
> > > On Thu, 30 Aug 2001, David Maplesden wrote:
> > >
> > > > Cool, I changed to set the max heap size instead and it
> > > seems to be working
> > > > (at least the tests have started running, and they are
> > > taking a long time).
> > > >
> > > > I am using the standard vm from Sun's jdk 1.3.1 and it
> > > doesn't have a
> > > > -client option...  What vm are you using?
> > > >
> > > > Thanks,
> > > > David
> > > >
> > > > > -Original Message-
> > > > > From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> > > > > Sent: Thursday, August 30, 2001 9:36 AM
> > > > > To: '[EMAIL PROTECTED]'
> > > > > Subject: RE: [JBoss-dev] Where's the nightly build?
> > > > >
> > > > >
> > > > > no -client option?  what vm are you using?  override
> > > > > junit.jvm.options, that
> > > > > is where it gets "-client" from.  I think it might need
> > > > > something, so try
> > > > > setting the heap size or something.
> > > > >
> > > > > --jason
> > > > >
> > > > >
> > > > > On Thu, 30 Aug 2001, David Maplesden wrote:
> > > > >
> > > > > > Aaargh, aargh, retraction, I take it back... I think.
> > > > > >
> > > > > > I missed something fairly obvious sorry.
> > > > > >
> > > > > > However I still can't get it to run though I'm alot closer
> > > > > than I thought I
> > > > > > was.
> > > > > >
> > > > > > Of course if anyone can get it to run, I would appreciate a
> > > > > pointer.  All I
> > > > > > get is a whole lot of these...
> > > > > >
> > > > > >      [junit]Running org.jboss.test.bank.test.Main
> > > > > >  [junit]Unrecognized option: -client
> > > > > >  [junit]Could not create the Java virtual machine.
> > > > > >  [junit]TEST org.jboss.test.bank.test.Main FAILED
> > > > > >  [junit]Running org.jboss.test.bmp.test.Main
> > > > > >  [junit]Unrecognized option: -client
> > > > > >  [junit]Could not create the Java virtual machine.
> > > > > >  [junit]TEST org.jboss.test.bmp.test.Main FAILED
> > > > > >  [junit]Running org.jboss.test.cts.test.AllJUnitTests
> > > > > >  [junit]Unrecognized option: -client
> > > > > >  [junit]Could not create the Java virtual machine.
> > > > > >
> > > > > > Cheers,
> > > > > > David
> > > > > >
> > > > > > > -Original Message-
> > > > > > > From: David Maplesden [mailto:[EMAIL PROTECTED]]
> > > > > > > Sent: Thursday, August 30, 2001 8:44 

RE: [JBoss-dev] Where's the nightly build?

2001-08-29 Thread Jason Dillon

Lets change the default to -Xmx128m or something.  Can we assume that users
will have a vm that can support 128m?

--jason


On Thu, 30 Aug 2001, David Maplesden wrote:

> Hmmm, mines the same (or very similar) so I looked at the documentation.
> -client is a standard option for java under linux but not under win32...
> what a pain.
>
> David
>
> > -Original Message-
> > From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, August 30, 2001 10:30 AM
> > To: '[EMAIL PROTECTED]'
> > Subject: RE: [JBoss-dev] Where's the nightly build?
> >
> >
> > java -version
> > java version "1.3.1"
> > Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
> > Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
> >
> > --jason
> >
> > On Thu, 30 Aug 2001, David Maplesden wrote:
> >
> > > Cool, I changed to set the max heap size instead and it
> > seems to be working
> > > (at least the tests have started running, and they are
> > taking a long time).
> > >
> > > I am using the standard vm from Sun's jdk 1.3.1 and it
> > doesn't have a
> > > -client option...  What vm are you using?
> > >
> > > Thanks,
> > > David
> > >
> > > > -Original Message-
> > > > From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> > > > Sent: Thursday, August 30, 2001 9:36 AM
> > > > To: '[EMAIL PROTECTED]'
> > > > Subject: RE: [JBoss-dev] Where's the nightly build?
> > > >
> > > >
> > > > no -client option?  what vm are you using?  override
> > > > junit.jvm.options, that
> > > > is where it gets "-client" from.  I think it might need
> > > > something, so try
> > > > setting the heap size or something.
> > > >
> > > > --jason
> > > >
> > > >
> > > > On Thu, 30 Aug 2001, David Maplesden wrote:
> > > >
> > > > > Aaargh, aargh, retraction, I take it back... I think.
> > > > >
> > > > > I missed something fairly obvious sorry.
> > > > >
> > > > > However I still can't get it to run though I'm alot closer
> > > > than I thought I
> > > > > was.
> > > > >
> > > > > Of course if anyone can get it to run, I would appreciate a
> > > > pointer.  All I
> > > > > get is a whole lot of these...
> > > > >
> > > > >  [junit]Running org.jboss.test.bank.test.Main
> > > > >  [junit]Unrecognized option: -client
> > > > >  [junit]Could not create the Java virtual machine.
> > > > >  [junit]TEST org.jboss.test.bank.test.Main FAILED
> > > > >  [junit]Running org.jboss.test.bmp.test.Main
> > > > >  [junit]Unrecognized option: -client
> > > > >  [junit]Could not create the Java virtual machine.
> > > > >  [junit]TEST org.jboss.test.bmp.test.Main FAILED
> > > > >  [junit]Running org.jboss.test.cts.test.AllJUnitTests
> > > > >  [junit]Unrecognized option: -client
> > > > >  [junit]Could not create the Java virtual machine.
> > > > >
> > > > > Cheers,
> > > > > David
> > > > >
> > > > > > -Original Message-
> > > > > > From: David Maplesden [mailto:[EMAIL PROTECTED]]
> > > > > > Sent: Thursday, August 30, 2001 8:44 AM
> > > > > > To: '[EMAIL PROTECTED]'
> > > > > > Subject: RE: [JBoss-dev] Where's the nightly build?
> > > > > >
> > > > > >
> > > > > > Note that you made it easy to run under linux, if anyone can
> > > > > > do the same for
> > > > > > win32 it would be appreciated...
> > > > > >
> > > > > > Or am I missing something.
> > > > > >
> > > > > > Cheers
> > > > > > David
> > > > > >
> > > > > > > -Original Message-
> > > > > > > From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> > > > > > > Sent: Thursday, August 30, 2001 8:45 AM
> > > > > > > To: [EMAIL PROTECTED]
> > > > > > > Subject: RE: [JBoss-dev] Where's the nightly build?
> > > > > > >
> > > 

RE: [JBoss-dev] Where's the nightly build?

2001-08-29 Thread David Maplesden

Hmmm, mines the same (or very similar) so I looked at the documentation.
-client is a standard option for java under linux but not under win32...
what a pain.

David

> -Original Message-
> From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, August 30, 2001 10:30 AM
> To: '[EMAIL PROTECTED]'
> Subject: RE: [JBoss-dev] Where's the nightly build?
> 
> 
> java -version
> java version "1.3.1"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
> Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
> 
> --jason
> 
> On Thu, 30 Aug 2001, David Maplesden wrote:
> 
> > Cool, I changed to set the max heap size instead and it 
> seems to be working
> > (at least the tests have started running, and they are 
> taking a long time).
> >
> > I am using the standard vm from Sun's jdk 1.3.1 and it 
> doesn't have a
> > -client option...  What vm are you using?
> >
> > Thanks,
> > David
> >
> > > -Original Message-
> > > From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> > > Sent: Thursday, August 30, 2001 9:36 AM
> > > To: '[EMAIL PROTECTED]'
> > > Subject: RE: [JBoss-dev] Where's the nightly build?
> > >
> > >
> > > no -client option?  what vm are you using?  override
> > > junit.jvm.options, that
> > > is where it gets "-client" from.  I think it might need
> > > something, so try
> > > setting the heap size or something.
> > >
> > > --jason
> > >
> > >
> > > On Thu, 30 Aug 2001, David Maplesden wrote:
> > >
> > > > Aaargh, aargh, retraction, I take it back... I think.
> > > >
> > > > I missed something fairly obvious sorry.
> > > >
> > > > However I still can't get it to run though I'm alot closer
> > > than I thought I
> > > > was.
> > > >
> > > > Of course if anyone can get it to run, I would appreciate a
> > > pointer.  All I
> > > > get is a whole lot of these...
> > > >
> > > >  [junit]Running org.jboss.test.bank.test.Main
> > > >  [junit]Unrecognized option: -client
> > > >  [junit]Could not create the Java virtual machine.
> > > >  [junit]TEST org.jboss.test.bank.test.Main FAILED
> > > >  [junit]Running org.jboss.test.bmp.test.Main
> > > >  [junit]Unrecognized option: -client
> > > >      [junit]Could not create the Java virtual machine.
> > > >  [junit]TEST org.jboss.test.bmp.test.Main FAILED
> > > >  [junit]Running org.jboss.test.cts.test.AllJUnitTests
> > > >  [junit]Unrecognized option: -client
> > > >  [junit]Could not create the Java virtual machine.
> > > >
> > > > Cheers,
> > > > David
> > > >
> > > > > -Original Message-----
> > > > > From: David Maplesden [mailto:[EMAIL PROTECTED]]
> > > > > Sent: Thursday, August 30, 2001 8:44 AM
> > > > > To: '[EMAIL PROTECTED]'
> > > > > Subject: RE: [JBoss-dev] Where's the nightly build?
> > > > >
> > > > >
> > > > > Note that you made it easy to run under linux, if anyone can
> > > > > do the same for
> > > > > win32 it would be appreciated...
> > > > >
> > > > > Or am I missing something.
> > > > >
> > > > > Cheers
> > > > > David
> > > > >
> > > > > > -Original Message-
> > > > > > From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> > > > > > Sent: Thursday, August 30, 2001 8:45 AM
> > > > > > To: [EMAIL PROTECTED]
> > > > > > Subject: RE: [JBoss-dev] Where's the nightly build?
> > > > > >
> > > > > >
> > > > > > > get the testsuite going, enforce usage of it through
> > > > > > buildmagic, then we
> > > > > >
> > > > > > Any thoughts on how you would like that enforced?  I made it
> > > > > > easy to run,
> > > > > >
> > > > > >  # Compile
> > > > > >  ./build/build.sh
> > > > > >
> > > > > >  # Run
> > > > > >  ./build/build.sh run
> > > > > >
> > > > > >  # Test
> > > > > >  ./build/buil

RE: [JBoss-dev] Where's the nightly build?

2001-08-29 Thread Jason Dillon

java -version
java version "1.3.1"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)

--jason

On Thu, 30 Aug 2001, David Maplesden wrote:

> Cool, I changed to set the max heap size instead and it seems to be working
> (at least the tests have started running, and they are taking a long time).
>
> I am using the standard vm from Sun's jdk 1.3.1 and it doesn't have a
> -client option...  What vm are you using?
>
> Thanks,
> David
>
> > -Original Message-
> > From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, August 30, 2001 9:36 AM
> > To: '[EMAIL PROTECTED]'
> > Subject: RE: [JBoss-dev] Where's the nightly build?
> >
> >
> > no -client option?  what vm are you using?  override
> > junit.jvm.options, that
> > is where it gets "-client" from.  I think it might need
> > something, so try
> > setting the heap size or something.
> >
> > --jason
> >
> >
> > On Thu, 30 Aug 2001, David Maplesden wrote:
> >
> > > Aaargh, aargh, retraction, I take it back... I think.
> > >
> > > I missed something fairly obvious sorry.
> > >
> > > However I still can't get it to run though I'm alot closer
> > than I thought I
> > > was.
> > >
> > > Of course if anyone can get it to run, I would appreciate a
> > pointer.  All I
> > > get is a whole lot of these...
> > >
> > >  [junit]Running org.jboss.test.bank.test.Main
> > >  [junit]Unrecognized option: -client
> > >  [junit]Could not create the Java virtual machine.
> > >  [junit]TEST org.jboss.test.bank.test.Main FAILED
> > >  [junit]Running org.jboss.test.bmp.test.Main
> > >  [junit]Unrecognized option: -client
> > >  [junit]Could not create the Java virtual machine.
> > >  [junit]TEST org.jboss.test.bmp.test.Main FAILED
> > >  [junit]Running org.jboss.test.cts.test.AllJUnitTests
> > >  [junit]Unrecognized option: -client
> > >  [junit]Could not create the Java virtual machine.
> > >
> > > Cheers,
> > > David
> > >
> > > > -Original Message-
> > > > From: David Maplesden [mailto:[EMAIL PROTECTED]]
> > > > Sent: Thursday, August 30, 2001 8:44 AM
> > > > To: '[EMAIL PROTECTED]'
> > > > Subject: RE: [JBoss-dev] Where's the nightly build?
> > > >
> > > >
> > > > Note that you made it easy to run under linux, if anyone can
> > > > do the same for
> > > > win32 it would be appreciated...
> > > >
> > > > Or am I missing something.
> > > >
> > > > Cheers
> > > > David
> > > >
> > > > > -Original Message-
> > > > > From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> > > > > Sent: Thursday, August 30, 2001 8:45 AM
> > > > > To: [EMAIL PROTECTED]
> > > > > Subject: RE: [JBoss-dev] Where's the nightly build?
> > > > >
> > > > >
> > > > > > get the testsuite going, enforce usage of it through
> > > > > buildmagic, then we
> > > > >
> > > > > Any thoughts on how you would like that enforced?  I made it
> > > > > easy to run,
> > > > >
> > > > >  # Compile
> > > > >  ./build/build.sh
> > > > >
> > > > >  # Run
> > > > >  ./build/build.sh run
> > > > >
> > > > >  # Test
> > > > >  ./build/build.sh testsuite
> > > > >
> > > > > It still takes forever.  If it was quicker, I would suggest
> > > > > making it a
> > > > > dependency of release, and change it to halt on
> > > > > errors/failures.  But that
> > > > > would drive me crazy since it takes so long to run.
> > > > >
> > > > > --jason
> > > > >
> > > > >
> > > > > ___
> > > > > Jboss-development mailing list
> > > > > [EMAIL PROTECTED]
> > > > > http://lists.sourceforge.net/lists/listinfo/jboss-development
> > > > >
> > > >
> > > > ___
> > > > Jboss-development mailing list
> > > > [EMAIL PROTECTED]
> > > > http://lists.sourceforge.net/lists/listinfo/jboss-development
> > > >
> > >
> > > ___
> > > Jboss-development mailing list
> > > [EMAIL PROTECTED]
> > > http://lists.sourceforge.net/lists/listinfo/jboss-development
> > >
> >
> >
> > ___
> > Jboss-development mailing list
> > [EMAIL PROTECTED]
> > http://lists.sourceforge.net/lists/listinfo/jboss-development
> >
>
> ___
> Jboss-development mailing list
> [EMAIL PROTECTED]
> http://lists.sourceforge.net/lists/listinfo/jboss-development
>


___
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development



RE: [JBoss-dev] Where's the nightly build?

2001-08-29 Thread David Maplesden

Cool, I changed to set the max heap size instead and it seems to be working
(at least the tests have started running, and they are taking a long time).

I am using the standard vm from Sun's jdk 1.3.1 and it doesn't have a
-client option...  What vm are you using?

Thanks,
David

> -Original Message-
> From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, August 30, 2001 9:36 AM
> To: '[EMAIL PROTECTED]'
> Subject: RE: [JBoss-dev] Where's the nightly build?
> 
> 
> no -client option?  what vm are you using?  override 
> junit.jvm.options, that
> is where it gets "-client" from.  I think it might need 
> something, so try
> setting the heap size or something.
> 
> --jason
> 
> 
> On Thu, 30 Aug 2001, David Maplesden wrote:
> 
> > Aaargh, aargh, retraction, I take it back... I think.
> >
> > I missed something fairly obvious sorry.
> >
> > However I still can't get it to run though I'm alot closer 
> than I thought I
> > was.
> >
> > Of course if anyone can get it to run, I would appreciate a 
> pointer.  All I
> > get is a whole lot of these...
> >
> >  [junit]Running org.jboss.test.bank.test.Main
> >  [junit]Unrecognized option: -client
> >  [junit]Could not create the Java virtual machine.
> >  [junit]TEST org.jboss.test.bank.test.Main FAILED
> >  [junit]Running org.jboss.test.bmp.test.Main
> >  [junit]Unrecognized option: -client
> >  [junit]Could not create the Java virtual machine.
> >  [junit]TEST org.jboss.test.bmp.test.Main FAILED
> >  [junit]Running org.jboss.test.cts.test.AllJUnitTests
> >  [junit]Unrecognized option: -client
> >  [junit]Could not create the Java virtual machine.
> >
> > Cheers,
> > David
> >
> > > -Original Message-
> > > From: David Maplesden [mailto:[EMAIL PROTECTED]]
> > > Sent: Thursday, August 30, 2001 8:44 AM
> > > To: '[EMAIL PROTECTED]'
> > > Subject: RE: [JBoss-dev] Where's the nightly build?
> > >
> > >
> > > Note that you made it easy to run under linux, if anyone can
> > > do the same for
> > > win32 it would be appreciated...
> > >
> > > Or am I missing something.
> > >
> > > Cheers
> > > David
> > >
> > > > -Original Message-
> > > > From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> > > > Sent: Thursday, August 30, 2001 8:45 AM
> > > > To: [EMAIL PROTECTED]
> > > > Subject: RE: [JBoss-dev] Where's the nightly build?
> > > >
> > > >
> > > > > get the testsuite going, enforce usage of it through
> > > > buildmagic, then we
> > > >
> > > > Any thoughts on how you would like that enforced?  I made it
> > > > easy to run,
> > > >
> > > >  # Compile
> > > >  ./build/build.sh
> > > >
> > > >  # Run
> > > >  ./build/build.sh run
> > > >
> > > >  # Test
> > > >  ./build/build.sh testsuite
> > > >
> > > > It still takes forever.  If it was quicker, I would suggest
> > > > making it a
> > > > dependency of release, and change it to halt on
> > > > errors/failures.  But that
> > > > would drive me crazy since it takes so long to run.
> > > >
> > > > --jason
> > > >
> > > >
> > > > ___
> > > > Jboss-development mailing list
> > > > [EMAIL PROTECTED]
> > > > http://lists.sourceforge.net/lists/listinfo/jboss-development
> > > >
> > >
> > > ___
> > > Jboss-development mailing list
> > > [EMAIL PROTECTED]
> > > http://lists.sourceforge.net/lists/listinfo/jboss-development
> > >
> >
> > ___
> > Jboss-development mailing list
> > [EMAIL PROTECTED]
> > http://lists.sourceforge.net/lists/listinfo/jboss-development
> >
> 
> 
> ___
> Jboss-development mailing list
> [EMAIL PROTECTED]
> http://lists.sourceforge.net/lists/listinfo/jboss-development
> 

___
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development



RE: [JBoss-dev] Where's the nightly build?

2001-08-29 Thread Jason Dillon

no -client option?  what vm are you using?  override junit.jvm.options, that
is where it gets "-client" from.  I think it might need something, so try
setting the heap size or something.

--jason


On Thu, 30 Aug 2001, David Maplesden wrote:

> Aaargh, aargh, retraction, I take it back... I think.
>
> I missed something fairly obvious sorry.
>
> However I still can't get it to run though I'm alot closer than I thought I
> was.
>
> Of course if anyone can get it to run, I would appreciate a pointer.  All I
> get is a whole lot of these...
>
>  [junit]Running org.jboss.test.bank.test.Main
>  [junit]Unrecognized option: -client
>  [junit]Could not create the Java virtual machine.
>  [junit]TEST org.jboss.test.bank.test.Main FAILED
>  [junit]Running org.jboss.test.bmp.test.Main
>  [junit]Unrecognized option: -client
>  [junit]Could not create the Java virtual machine.
>  [junit]TEST org.jboss.test.bmp.test.Main FAILED
>  [junit]Running org.jboss.test.cts.test.AllJUnitTests
>  [junit]Unrecognized option: -client
>  [junit]Could not create the Java virtual machine.
>
> Cheers,
> David
>
> > -Original Message-
> > From: David Maplesden [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, August 30, 2001 8:44 AM
> > To: '[EMAIL PROTECTED]'
> > Subject: RE: [JBoss-dev] Where's the nightly build?
> >
> >
> > Note that you made it easy to run under linux, if anyone can
> > do the same for
> > win32 it would be appreciated...
> >
> > Or am I missing something.
> >
> > Cheers
> > David
> >
> > > -Original Message-
> > > From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> > > Sent: Thursday, August 30, 2001 8:45 AM
> > > To: [EMAIL PROTECTED]
> > > Subject: RE: [JBoss-dev] Where's the nightly build?
> > >
> > >
> > > > get the testsuite going, enforce usage of it through
> > > buildmagic, then we
> > >
> > > Any thoughts on how you would like that enforced?  I made it
> > > easy to run,
> > >
> > >  # Compile
> > >  ./build/build.sh
> > >
> > >  # Run
> > >  ./build/build.sh run
> > >
> > >  # Test
> > >  ./build/build.sh testsuite
> > >
> > > It still takes forever.  If it was quicker, I would suggest
> > > making it a
> > > dependency of release, and change it to halt on
> > > errors/failures.  But that
> > > would drive me crazy since it takes so long to run.
> > >
> > > --jason
> > >
> > >
> > > ___
> > > Jboss-development mailing list
> > > [EMAIL PROTECTED]
> > > http://lists.sourceforge.net/lists/listinfo/jboss-development
> > >
> >
> > ___
> > Jboss-development mailing list
> > [EMAIL PROTECTED]
> > http://lists.sourceforge.net/lists/listinfo/jboss-development
> >
>
> ___
> Jboss-development mailing list
> [EMAIL PROTECTED]
> http://lists.sourceforge.net/lists/listinfo/jboss-development
>


___
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development



RE: [JBoss-dev] Where's the nightly build?

2001-08-29 Thread David Maplesden

Aaargh, aargh, retraction, I take it back... I think.

I missed something fairly obvious sorry.  

However I still can't get it to run though I'm alot closer than I thought I
was.

Of course if anyone can get it to run, I would appreciate a pointer.  All I
get is a whole lot of these...

 [junit]Running org.jboss.test.bank.test.Main
 [junit]Unrecognized option: -client
 [junit]Could not create the Java virtual machine.
 [junit]TEST org.jboss.test.bank.test.Main FAILED
 [junit]Running org.jboss.test.bmp.test.Main
 [junit]Unrecognized option: -client
 [junit]Could not create the Java virtual machine.
 [junit]TEST org.jboss.test.bmp.test.Main FAILED
 [junit]Running org.jboss.test.cts.test.AllJUnitTests
 [junit]Unrecognized option: -client
 [junit]Could not create the Java virtual machine.

Cheers,
David

> -Original Message-
> From: David Maplesden [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, August 30, 2001 8:44 AM
> To: '[EMAIL PROTECTED]'
> Subject: RE: [JBoss-dev] Where's the nightly build?
> 
> 
> Note that you made it easy to run under linux, if anyone can 
> do the same for
> win32 it would be appreciated...
> 
> Or am I missing something.
> 
> Cheers
> David
> 
> > -Original Message-
> > From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, August 30, 2001 8:45 AM
> > To: [EMAIL PROTECTED]
> > Subject: RE: [JBoss-dev] Where's the nightly build?
> > 
> > 
> > > get the testsuite going, enforce usage of it through 
> > buildmagic, then we
> > 
> > Any thoughts on how you would like that enforced?  I made it 
> > easy to run,
> > 
> >  # Compile
> >  ./build/build.sh
> > 
> >  # Run
> >  ./build/build.sh run
> > 
> >  # Test
> >  ./build/build.sh testsuite
> > 
> > It still takes forever.  If it was quicker, I would suggest 
> > making it a
> > dependency of release, and change it to halt on 
> > errors/failures.  But that
> > would drive me crazy since it takes so long to run.
> > 
> > --jason
> > 
> > 
> > ___
> > Jboss-development mailing list
> > [EMAIL PROTECTED]
> > http://lists.sourceforge.net/lists/listinfo/jboss-development
> > 
> 
> ___
> Jboss-development mailing list
> [EMAIL PROTECTED]
> http://lists.sourceforge.net/lists/listinfo/jboss-development
> 

___
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development



RE: [JBoss-dev] Where's the nightly build?

2001-08-29 Thread David Maplesden

Note that you made it easy to run under linux, if anyone can do the same for
win32 it would be appreciated...

Or am I missing something.

Cheers
David

> -Original Message-
> From: Jason Dillon [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, August 30, 2001 8:45 AM
> To: [EMAIL PROTECTED]
> Subject: RE: [JBoss-dev] Where's the nightly build?
> 
> 
> > get the testsuite going, enforce usage of it through 
> buildmagic, then we
> 
> Any thoughts on how you would like that enforced?  I made it 
> easy to run,
> 
>  # Compile
>  ./build/build.sh
> 
>  # Run
>  ./build/build.sh run
> 
>  # Test
>  ./build/build.sh testsuite
> 
> It still takes forever.  If it was quicker, I would suggest 
> making it a
> dependency of release, and change it to halt on 
> errors/failures.  But that
> would drive me crazy since it takes so long to run.
> 
> --jason
> 
> 
> ___
> Jboss-development mailing list
> [EMAIL PROTECTED]
> http://lists.sourceforge.net/lists/listinfo/jboss-development
> 

___
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development



RE: [JBoss-dev] Where's the nightly build?

2001-08-29 Thread Jason Dillon

> get the testsuite going, enforce usage of it through buildmagic, then we

Any thoughts on how you would like that enforced?  I made it easy to run,

 # Compile
 ./build/build.sh

 # Run
 ./build/build.sh run

 # Test
 ./build/build.sh testsuite

It still takes forever.  If it was quicker, I would suggest making it a
dependency of release, and change it to halt on errors/failures.  But that
would drive me crazy since it takes so long to run.

--jason


___
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development



RE: [JBoss-dev] Where's the nightly build?

2001-08-29 Thread marc fleury



The 
script kiddies of late are not EVEN running the tests, just commit and 
run
 
get 
the testsuite going, enforce usage of it through buildmagic, then we will turn 
the nightly build on... right now, a lot of kiddy talk but little 
structure
 
marcf
 
-- You 
are in deep space --
 

  -Original Message-From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]]On Behalf Of Bill 
  BurkeSent: Wednesday, August 29, 2001 12:20 PMTo: 
  Jboss-Development@Lists. Sourceforge. NetSubject: [JBoss-dev] 
  Where's the nightly build?
  What happened to 
  it?  Is it ever coming back?
   
  Bill