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 2002/02/04 04:24:04 UTC

DO NOT REPLY [Bug 4400] - Unexpected behavior of java task when paralleled

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=4400>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

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

Unexpected behavior of java task when paralleled





------- Additional Comments From umagesh@apache.org  2002-02-04 03:24 -------
Please help me reproduce the problem by providing relevant portions of your
build.xml file, your java file which has the System.out.println stuff, etc.
I am not able to reproduce the problem and hence the request.  This is how I
tried to reproduce it (in vain)

<project default="all">
<target name="all">
    <parallel>
	<java classname="test1" classpath="." output="out1"/>
	<java classname="test1" classpath="." output="out2"/>
	<java classname="test1" classpath="." output="out3"/>
	<java classname="test1" classpath="." output="out4"/>
	<java classname="test1" classpath="." output="out5"/>
    </parallel>
</target>
</project>

public class test1 {
    public static void main(String args[]) {
        System.out.println("Hello World!");
    }
}

All output files are being created successfully with the correect contents.

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>