8140776: CompilerControl: Remove UTF-16 from the tests
authorppunegov
Thu, 29 Oct 2015 21:31:47 +0300
changeset 33486 fe33cd4bc70e
parent 33484 19436533aef1
child 33487 cf40d414392a
8140776: CompilerControl: Remove UTF-16 from the tests Summary: remove UTF-16 from the generation until the failure reason isn't found Reviewed-by: iignatyev
hotspot/test/compiler/compilercontrol/share/method/MethodGenerator.java
--- a/hotspot/test/compiler/compilercontrol/share/method/MethodGenerator.java	Thu Oct 29 13:23:43 2015 +0000
+++ b/hotspot/test/compiler/compilercontrol/share/method/MethodGenerator.java	Thu Oct 29 21:31:47 2015 +0300
@@ -223,6 +223,8 @@
         elements.add(input -> "_" + input);
         elements.add(input -> "$" + input);
         elements.add(input -> "0" + input);
+
+        /* TODO: uncomment this together with the fix for 8140631
         // Unicode characters
         elements.add(input -> embed(input, "\u0001"));
         elements.add(input -> embed(input, "\u007F"));
@@ -231,6 +233,7 @@
         elements.add(input -> embed(input, "\u0306"));
         // Supplementary character
         elements.add(input -> new String(Character.toChars(0x1F64C)));
+        */
         return elements;
     }