Browse Source

[eval] disable Crc32 test for now (see #7826)

Dan Korostelev 6 năm trước cách đây
mục cha
commit
af6533b1f5
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  1. 3 1
      tests/unit/src/unitstd/haxe/crypto/Crc32.unit.hx

+ 3 - 1
tests/unit/src/unitstd/haxe/crypto/Crc32.unit.hx

@@ -1,2 +1,4 @@
 haxe.crypto.Crc32.make(haxe.io.Bytes.ofString("")) == 0;
-haxe.crypto.Crc32.make(haxe.io.Bytes.ofString("The quick brown fox jumps over the lazy dog")) == 0x414FA339;
+#if !eval
+haxe.crypto.Crc32.make(haxe.io.Bytes.ofString("The quick brown fox jumps over the lazy dog")) == 0x414FA339;
+#end