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 2003/05/05 15:48:45 UTC

DO NOT REPLY [Bug 14849] - JProbe tasks: executables cannot be found with JProbe 4.0.1

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=14849>.
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=14849

JProbe tasks: executables cannot be found with JProbe 4.0.1

jan.sievers@sap.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|FIXED                       |



------- Additional Comments From jan.sievers@sap.com  2003-05-05 13:48 -------
Hi,
I'm afraid there's another small bug with the "paramfile" parameter in CovBase:


    protected String getParamFileArgument() {
        return (!isJProbe4 ? "-jp_" : "") + "paramfile=";
    }

should be:

    protected String getParamFileArgument() {
        return ("-" + (!isJProbe4 ? "jp_" : "") + "paramfile=";
    }

Regards, Jan