Fix a bug that creates a FileNotFoundException when a directory is not there yet. BLD200307150100
authorcliffwd@netbeans.org
Thu, 10 Jul 2003 23:37:11 +0000
changeset 13110f950518a3a6
parent 1310 19a5c72a6b9b
child 1312 b524d01b62da
Fix a bug that creates a FileNotFoundException when a directory is not there yet.
schema2beans/test/unit/src/data/TestMerge.java
     1.1 --- a/schema2beans/test/unit/src/data/TestMerge.java	Thu Jul 10 12:50:55 2003 +0000
     1.2 +++ b/schema2beans/test/unit/src/data/TestMerge.java	Thu Jul 10 23:37:11 2003 +0000
     1.3 @@ -36,7 +36,7 @@
     1.4      // to make sure that any change in schema2beans does not introduce a 
     1.5      // significant increase of mem usage.
     1.6      //
     1.7 -    static float memUsageReference = 1241;
     1.8 +    static float memUsageReference = 1159;
     1.9  
    1.10      
    1.11      public class MyListener implements PropertyChangeListener {
    1.12 @@ -514,16 +514,16 @@
    1.13  	if (diff > 0) {
    1.14  	    //	We consume more memory than excepted
    1.15  	    float p = diff/memUsageReference*100;
    1.16 -	    if (p > 0.6) {
    1.17 -		out("It seems that the last schema2beans code changes have increased the memory consumption by " + p + "%");
    1.18 -		out("If this is expected and acceptable, change the memUsageReference value in TestMerge.java, to be " + k2);
    1.19 +	    if (p > 1.0) {
    1.20 +            out("It seems that the last schema2beans code changes have increased the memory consumption by " + p + "%");
    1.21 +            out("If this is expected and acceptable, change the memUsageReference value in TestMerge.java, to be " + k2);
    1.22  	    }
    1.23  	} else {
    1.24  	    //	We consume less memory than expected
    1.25  	    float p = Math.abs(diff)/memUsageReference*100;
    1.26 -	    if (p > 0.2) {
    1.27 -		out("It seems that the last schema2beans code changes have decreased the memory consumption by " + p + "% !!!");
    1.28 -		out("Please, change the memUsageReference value in TestMerge.java, to be " + k2);
    1.29 +	    if (p > 10.0) {
    1.30 +            out("It seems that the last schema2beans code changes have decreased the memory consumption by " + p + "% !!!");
    1.31 +            out("Please, change the memUsageReference value in TestMerge.java, to be " + k2);
    1.32  	    }   
    1.33  	}
    1.34  	out("memory test done");