浏览代码

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

Dan Korostelev 6 年之前
父节点
当前提交
af6533b1f5
共有 1 个文件被更改,包括 3 次插入1 次删除
  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