浏览代码

disable failing test (see #6482)

Simon Krajewski 8 年之前
父节点
当前提交
6a804e5fbd
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      tests/unit/src/unit/issues/Issue6482.hx

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

@@ -2,9 +2,11 @@ package unit.issues;
 
 
 class Issue6482 extends unit.Test {
 class Issue6482 extends unit.Test {
 	function test() {
 	function test() {
+		#if (!cpp && !cs && !java && !lua)
 		exc(function() {
 		exc(function() {
 			cast("foo", Int);
 			cast("foo", Int);
 			trace("fail");
 			trace("fail");
 		});
 		});
+		#end
 	}
 	}
 }
 }