소스 검색

[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