ソースを参照

Compile cppia host with HXCPP_CATCH_SEGV and ename nullFieldAccess test

Hugh Sanderson 4 年 前
コミット
37b0fb39ae
2 ファイル変更1 行追加2 行削除
  1. 1 0
      tests/unit/compile-cppia-host.hxml
  2. 0 2
      tests/unit/src/unit/TestMisc.hx

+ 1 - 0
tests/unit/compile-cppia-host.hxml

@@ -2,6 +2,7 @@
 -D source-header=''
 -D scriptable
 -D dll_export=bin/cppia.classes
+-D HXCPP_CATCH_SEGV
 --debug
 --dce no
 -cpp bin/cppia

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

@@ -599,10 +599,8 @@ 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
 }