소스 검색

disable test (see #4060)

Simon Krajewski 10 년 전
부모
커밋
78cd9e99e6
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      tests/unit/src/unit/TestBytes.hx

+ 2 - 0
tests/unit/src/unit/TestBytes.hx

@@ -106,6 +106,7 @@ class TestBytes extends Test {
 		eq(input.readAll().toString(), "One é accent");
 	}
 
+	#if !php // https://github.com/HaxeFoundation/haxe/issues/4060
 	function testFastGet() {
 		var b = haxe.io.Bytes.alloc(10);
 		var bd = b.getData();
@@ -126,6 +127,7 @@ class TestBytes extends Test {
 		eq(fget(bd3, 0), 0xC3);
 		eq(fget(bd3, 1), 0xA9);
 	}
+	#end
 
 	function testBytesDataEquality () {
 		var b1 = haxe.io.Bytes.ofString("AB");