Browse Source

Disable #6325 tests on hl, flash and c++

Cauê Waneck 8 years ago
parent
commit
9770f2ce66
1 changed files with 4 additions and 0 deletions
  1. 4 0
      tests/unit/src/unit/issues/Issue6325.hx

+ 4 - 0
tests/unit/src/unit/issues/Issue6325.hx

@@ -1,5 +1,7 @@
 package unit.issues;
 package unit.issues;
 
 
+#if (!hl && !flash && !cpp && !as3)
+
 class Issue6325 extends Test {
 class Issue6325 extends Test {
   public function test() {
   public function test() {
     var base = new Base();
     var base = new Base();
@@ -47,3 +49,5 @@ private class UsesChild extends UsesBase {
     return doSomething(base) + 1;
     return doSomething(base) + 1;
   }
   }
 }
 }
+
+#end