Browse Source

[tests] disable questionable test for now

see #7757
Simon Krajewski 6 years ago
parent
commit
5e04f94f62
1 changed files with 2 additions and 0 deletions
  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
 }