Ver código fonte

disable unit tests until #1975 is resolved

Nicolas Cannasse 12 anos atrás
pai
commit
33917d5742
1 arquivos alterados com 3 adições e 0 exclusões
  1. 3 0
      tests/unit/unitstd/haxe/Utf8.unit.hx

+ 3 - 0
tests/unit/unitstd/haxe/Utf8.unit.hx

@@ -1,3 +1,5 @@
+/*
+ // disable until we decide how to handle JS/SWF API being UCS2 and not UTF8
 var str = "あ𠀀い";
 haxe.Utf8.length(str) == 3;
 haxe.Utf8.charCodeAt(str, 0) == 0x3042;
@@ -8,3 +10,4 @@ buf.addChar(0x3042);
 buf.addChar(0x20000);
 buf.addChar(0x3044);
 buf.toString() == str;
+*/