瀏覽代碼

[CI] enable Sys.programPath test for cpp target
see https://github.com/HaxeFoundation/hxcpp/issues/398

Andy Li 9 年之前
父節點
當前提交
6ebdc63ca6
共有 1 個文件被更改,包括 0 次插入7 次删除
  1. 0 7
      tests/sys/src/TestSys.hx

+ 0 - 7
tests/sys/src/TestSys.hx

@@ -30,13 +30,6 @@ class TestSys extends TestCommandBase {
 			switch (Sys.systemName()) {
 				case "Windows":
 					assertTrue(StringTools.endsWith(p, "Main-debug.exe"));
-				case "Linux":
-					if (Sys.getEnv("CI") != null) {
-						// pass
-						// when run through RunCi.n, programPath will report the path to Neko VM...
-					} else {
-						assertTrue(StringTools.endsWith(p, "Main-debug"));
-					}
 				case _:
 					assertTrue(StringTools.endsWith(p, "Main-debug"));
 			}