You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bu...@apache.org on 2001/04/03 18:55:39 UTC

[Bug 1196] New - Adding a "wait" attribute to the task.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=1196

*** shadow/1196	Tue Apr  3 09:55:38 2001
--- shadow/1196.tmp.17201	Tue Apr  3 09:55:38 2001
***************
*** 0 ****
--- 1,32 ----
+ +============================================================================+
+ | Adding a "wait" attribute to the <junit> task.                             |
+ +----------------------------------------------------------------------------+
+ |        Bug #: 1196                        Product: Ant                     |
+ |       Status: NEW                         Version: 1.3                     |
+ |   Resolution:                            Platform: PC                      |
+ |     Severity: Enhancement              OS/Version:                         |
+ |     Priority:                           Component: Optional Tasks          |
+ +----------------------------------------------------------------------------+
+ |  Assigned To: ant-dev@jakarta.apache.org                                   |
+ |  Reported By: ehsforward@yahoo.com                                         |
+ |      CC list: Cc:                                                          |
+ +----------------------------------------------------------------------------+
+ |          URL:                                                              |
+ +============================================================================+
+ |                              DESCRIPTION                                   |
+ Hi,
+ 
+ I use Ant to build, package, deploy J2ee applications to a server and run tests 
+ on them.
+ 
+ Deployement takes some time, and the test often fails because it is started 
+ before the deployement has finished.
+ 
+ Would it be a good idea to add a "wait" attribute to the <junit> task so that 
+ the test does not start before a certain time (I guess it would be in 
+ milliseconds), allowing deployement to finish?
+ 
+ I am sure that it would not only be usefull to J2ee deployment but also to any 
+ work on different types of server.
+ 
+ Emmanuel