You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by dj...@apache.org on 2007/05/18 05:51:49 UTC

svn commit: r539249 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/util/HarnessJavaTest.java

Author: djd
Date: Thu May 17 20:51:48 2007
New Revision: 539249

URL: http://svn.apache.org/viewvc?view=rev&rev=539249
Log:
DERBY-2434 Ensure the output for HarnessJavaTest is written using the expected output encoding to
match the master files.

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/util/HarnessJavaTest.java

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/util/HarnessJavaTest.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/util/HarnessJavaTest.java?view=diff&rev=539249&r1=539248&r2=539249
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/util/HarnessJavaTest.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/util/HarnessJavaTest.java Thu May 17 20:51:48 2007
@@ -76,7 +76,8 @@
 
         
         PrintStream out = System.out;
-        PrintStream testOut = new PrintStream(getOutputStream());
+        PrintStream testOut = new PrintStream(getOutputStream(),
+                false, outputEncoding);
         setSystemOut(testOut);
                 
         Class test = Class.forName(testClassName);