From 8e33fe49f52e247af97819103cb7aa16a31366e4 Mon Sep 17 00:00:00 2001 From: parrt Date: Sun, 20 Nov 2016 19:53:05 -0800 Subject: [PATCH] turn out stderr output from clang++ compiles --- .../test/org/antlr/v4/test/runtime/cpp/BaseCppTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime-testsuite/test/org/antlr/v4/test/runtime/cpp/BaseCppTest.java b/runtime-testsuite/test/org/antlr/v4/test/runtime/cpp/BaseCppTest.java index 5a34b5707..a61ffa91c 100644 --- a/runtime-testsuite/test/org/antlr/v4/test/runtime/cpp/BaseCppTest.java +++ b/runtime-testsuite/test/org/antlr/v4/test/runtime/cpp/BaseCppTest.java @@ -594,7 +594,7 @@ public class BaseCppTest implements RuntimeTestSupport { String output = stdoutVacuum.toString(); if ( stderrVacuum.toString().length()>0 ) { this.stderrDuringParse = stderrVacuum.toString(); - System.err.println(this.stderrDuringParse); +// System.err.println(this.stderrDuringParse); } if (errcode != 0) { String err = "execution failed with error code: "+errcode;