diff graal/com.oracle.truffle.sl.test/src/com/oracle/truffle/sl/test/AbstractTest.java @ 8463:b2161263e9f2

Cleanup unit tests : they should not print to stdout/stderr
author Gilles Duboscq <duboscq@ssw.jku.at>
date Mon, 25 Mar 2013 19:22:03 +0100
parents 5e3d1a68664e
children 07f8d136a05e
line wrap: on
line diff
--- a/graal/com.oracle.truffle.sl.test/src/com/oracle/truffle/sl/test/AbstractTest.java	Mon Mar 25 15:59:26 2013 +0100
+++ b/graal/com.oracle.truffle.sl.test/src/com/oracle/truffle/sl/test/AbstractTest.java	Mon Mar 25 19:22:03 2013 +0100
@@ -57,7 +57,7 @@
         PrintStream origErr = System.err;
         System.setErr(printer);
 
-        SimpleLanguage.run(in, printer, REPEATS, true);
+        SimpleLanguage.run(in, printer, REPEATS, false);
 
         System.setErr(origErr);
         Assert.assertEquals(repeat(concat(expectedOutput), REPEATS), new String(out.toByteArray()));