changeset 145:6fcc8de719f5

6760226: test/tools/javap/T6622260.java fails with specific locale settings Summary: Changed the regression test in order to make it more robust w.r.t. to locale settings Reviewed-by: jjg
author mcimadamore
date Thu, 16 Oct 2008 18:07:37 +0100
parents 2c1ef6ec9413
children 402183e8d6e1
files test/tools/javap/T6622260.java
diffstat 1 files changed, 1 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/test/tools/javap/T6622260.java	Thu Oct 16 07:39:53 2008 -0700
+++ b/test/tools/javap/T6622260.java	Thu Oct 16 18:07:37 2008 +0100
@@ -189,10 +189,7 @@
 
     void verify(String output) {
         System.out.println(output);
-        if (output.startsWith("Classfile")) {
-            // make sure to ignore filename
-            output = output.substring(output.indexOf('\n'));
-        }
+        output = output.substring(output.indexOf("Test.java"));
         if (output.indexOf("-") >= 0)
             throw new Error("- found in output");
         if (output.indexOf("FFFFFF") >= 0)