浏览代码

disable test #8118 for flash and neko

Aleksandr Kuzmenko 6 年之前
父节点
当前提交
80cfd65b34
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      tests/unit/src/unit/issues/Issue8118.hx

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

@@ -1,9 +1,11 @@
 package unit.issues;
 
 class Issue8118 extends unit.Test {
+#if !(neko || flash)
 	static var v:RootEnum;
 	function test() {
 		v = A(10);
 		eq(10, switch v { case A(i): i; });
 	}
+#end
 }