Browse Source

disable failing test (see #6482)

Simon Krajewski 8 years ago
parent
commit
6a804e5fbd
1 changed files with 2 additions and 0 deletions
  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 {
 	function test() {
+		#if (!cpp && !cs && !java && !lua)
 		exc(function() {
 			cast("foo", Int);
 			trace("fail");
 		});
+		#end
 	}
 }