Pārlūkot izejas kodu

[tests] hxcpp now uppercases

closes #7400
Simon Krajewski 7 gadi atpakaļ
vecāks
revīzija
abf7329cea
1 mainītis faili ar 0 papildinājumiem un 6 dzēšanām
  1. 0 6
      tests/unit/src/unitstd/Unicode.unit.hx

+ 0 - 6
tests/unit/src/unitstd/Unicode.unit.hx

@@ -140,8 +140,6 @@ input.readString(2) == "é";
 input.readString(7) == "あ😂";
 input.readString(bytes.length - 9,RawNative) == "éあ😂";
 
-// Mixed encoding tests... mostly relevant for Eval which has both ASCII and UCS2 at run-time
-
 var s = "ée";
 var s1 = s.charAt(1);
 s1 == "e";
@@ -171,8 +169,6 @@ Reflect.compare("ee", "éed".substr(1)) > 0;
 Reflect.compare("éee".substr(1), "éed".substr(1)) > 0;
 Reflect.compare("éee".substr(1), "ed") > 0;
 
-#if !cpp
-
 var s = "ä😂";
 s.toUpperCase() == "Ä😂";
 s.toLowerCase() == s;
@@ -192,8 +188,6 @@ s.toLowerCase() == "a😂";
 "σ".toUpperCase() == "Σ";
 "Σ".toLowerCase() == "σ";
 
-#end
-
 var map = new haxe.ds.StringMap();
 map.set("path", 1);
 map.get("äpath".substr(1)) == 1;