~ubuntu-branches/debian/sid/wagon2/sid

« back to all changes in this revision

Viewing changes to wagon-tcks/wagon-tck-http/src/main/java/org/apache/maven/wagon/tck/http/fixture/ServerFixture.java

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2015-09-02 23:46:43 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20150902234643-byu832r11djlzjbs
Tags: 2.9-1
* Team upload.
* New upstream release
  - Refreshed the patches
* Removed the build dependency on libmaven-enforcer-plugin-java
* No longer build and install the unused wagon-scm and wagon-ssh modules
  to reduce the dependencies of libwagon2-java.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
 
47
47
import static org.apache.maven.wagon.tck.http.util.TestUtil.getResource;
48
48
 
 
49
/**
 
50
 * 
 
51
 */
49
52
public class ServerFixture
50
53
{
51
54
    private static Logger logger = Logger.getLogger( ServerFixture.class );
189
192
        server.start();
190
193
 
191
194
        int total = 0;
192
 
        while ( total < 3000 && !server.isStarted() )
 
195
        while ( total < 3 * 1000 && !server.isStarted() )
193
196
        {
194
197
            server.wait( 10 );
195
198
            total += 10;