From: <ep...@us...> - 2013-11-12 08:47:22
|
Revision: 5993 http://sourceforge.net/p/jnode/svn/5993 Author: epr Date: 2013-11-12 08:47:18 +0000 (Tue, 12 Nov 2013) Log Message: ----------- Send output of compiler tests to a /core/build/compiler-test Modified Paths: -------------- trunk/core/src/test/org/jnode/test/core/CompilerTest.java Modified: trunk/core/src/test/org/jnode/test/core/CompilerTest.java =================================================================== --- trunk/core/src/test/org/jnode/test/core/CompilerTest.java 2013-11-12 08:25:00 UTC (rev 5992) +++ trunk/core/src/test/org/jnode/test/core/CompilerTest.java 2013-11-12 08:47:18 UTC (rev 5993) @@ -168,7 +168,9 @@ final String fname = cname + "#" + mname.replace('<', '_').replace('>', '_') + "." + c.getName() + ".method"; - final FileOutputStream out = new FileOutputStream(fname); + final File outDir = new File("./core/build/compiler-test"); + outDir.mkdirs(); + final FileOutputStream out = new FileOutputStream(new File(outDir, fname)); try { if (!method.isAbstract()) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |