Browse Source

disable test #8452 for cppia

Aleksandr Kuzmenko 5 years ago
parent
commit
24d7e79e37
1 changed files with 2 additions and 1 deletions
  1. 2 1
      tests/unit/src/unit/TestMisc.hx

+ 2 - 1
tests/unit/src/unit/TestMisc.hx

@@ -599,9 +599,10 @@ class TestMisc extends Test {
 
 	static var nf1:Base = null;
 	static var nf2:{s:String} = null;
-
+#if !cppia //see https://github.com/HaxeFoundation/haxe/issues/9261
 	function testNullFieldAccess() {
 		eq("NPE", try nf1.s catch (e:Any) "NPE");
 		eq("NPE", try nf2.s catch (e:Any) "NPE");
 	}
+#end
 }