--- old/test/compiler/compilercontrol/share/scenario/Scenario.java 2015-11-23 18:15:07.000000000 +0300 +++ new/test/compiler/compilercontrol/share/scenario/Scenario.java 2015-11-23 18:15:07.000000000 +0300 @@ -28,7 +28,6 @@ import compiler.compilercontrol.share.processors.LogProcessor; import compiler.compilercontrol.share.processors.PrintDirectivesProcessor; import compiler.compilercontrol.share.processors.PrintProcessor; -import compiler.compilercontrol.share.processors.QuietProcessor; import jdk.test.lib.Asserts; import jdk.test.lib.OutputAnalyzer; import jdk.test.lib.Pair; @@ -77,8 +76,7 @@ nonQuieted.add(cc); } } - processors.add(new CommandProcessor(nonQuieted)); - processors.add(new QuietProcessor(quieted)); + processors.add(new CommandProcessor(nonQuieted, quieted)); List jcmdExecCommands = new ArrayList<>(); boolean addCommandMet = false; boolean printCommandMet = false; @@ -273,9 +271,7 @@ ccList.addAll(builders.get(Type.OPTION).getCompileCommands()); ccList.addAll(builders.get(Type.FILE).getCompileCommands()); - /* - * Create a list of directives to check which one was printed - */ + // Create a list of directives to check which one was printed List directives = new ArrayList<>(); if (jcmdContainsCommand(JcmdType.PRINT)) { if (!isClearedState) {