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
--- 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;
}