소스 검색

[tests] disable questionable test for now

see #7757
Simon Krajewski 6 년 전
부모
커밋
5e04f94f62
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      tests/unit/src/unit/issues/Issue5584.hx

+ 2 - 0
tests/unit/src/unit/issues/Issue5584.hx

@@ -5,6 +5,7 @@ import cpp.Object;
 import haxe.io.Bytes;
 
 class Issue5584 extends Test {
+	#if false
 	function test() {
 		var callable = new Callable<Object->Object>(cffi_decompress);
 		var bytes = Bytes.alloc (100);
@@ -14,4 +15,5 @@ class Issue5584 extends Test {
 	function cffi_decompress(a:Dynamic):Dynamic {
 		return null;
 	}
+	#end
 }