ソースを参照

[cs/java] Disabled failing test (see https://groups.google.com/d/msg/haxedev/TUaUykoTpq8/Q4XwcL4UyNUJ)

Caue Waneck 12 年 前
コミット
410c2012c8
1 ファイル変更2 行追加0 行削除
  1. 2 0
      tests/unit/TestMisc.hx

+ 2 - 0
tests/unit/TestMisc.hx

@@ -277,9 +277,11 @@ class TestMisc extends Test {
 		// check inherited dynamic method
 		var inst = new MyOtherDynamicClass(0);
 		var add = inst.add;
+		#if (!cs && !java) //see https://groups.google.com/d/msg/haxedev/TUaUykoTpq8/Q4XwcL4UyNUJ
 		eq( inst.add(1,2), 13 );
 		eq( inst.add.bind(1)(2), 13 );
 		eq( add(1,2), 13 );
+		#end
 
 		// check static dynamic
 		eq( MyDynamicClass.staticDynamic(1,2), 13 );