Bug 393149 - Test failures on Mac
- enable existing DEBUG sysout.
diff --git a/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/runtime/LocalVMLauncher.java b/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/runtime/LocalVMLauncher.java
index 2e4d114..a7d925f 100644
--- a/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/runtime/LocalVMLauncher.java
+++ b/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/runtime/LocalVMLauncher.java
@@ -128,12 +128,12 @@
 		// does not properly handle spaces in arguments on Unix/Linux platforms.
 		String[] commandLine = getCommandLine();
 
-		// DEBUG
-		/*for (int i = 0; i < commandLine.length; i++) {
+		// DEBUG - temporarily enabled for https://bugs.eclipse.org/393149
+		for (int i = 0; i < commandLine.length; i++) {
 			System.out.print(commandLine[i] + " ");
 		}
 		System.out.println();
-		*/
+		
 
 		vmProcess= Runtime.getRuntime().exec(commandLine);
 	} catch (IOException e) {