changeset 13198:9a971210a55a

put PTX logging behind the -G:Log option
author Doug Simon <doug.simon@oracle.com>
date Sat, 30 Nov 2013 01:33:29 +0100
parents 8569b9e047cd
children bae0869c829a
files graal/com.oracle.graal.compiler.ptx.test/src/com/oracle/graal/compiler/ptx/test/PTXTestBase.java
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.compiler.ptx.test/src/com/oracle/graal/compiler/ptx/test/PTXTestBase.java	Sat Nov 30 01:16:55 2013 +0100
+++ b/graal/com.oracle.graal.compiler.ptx.test/src/com/oracle/graal/compiler/ptx/test/PTXTestBase.java	Sat Nov 30 01:33:29 2013 +0100
@@ -49,7 +49,8 @@
     private StructuredGraph sg;
 
     public static void printReport(String message) {
-        TTY.println(message);
+        // Use -G:Log=Test to see these messages on the console
+        Debug.log(message);
     }
 
     public PTXTestBase() {