ソースを参照

[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"));
 			}