Sfoglia il codice sorgente

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

Andy Li 9 anni fa
parent
commit
6ebdc63ca6
1 ha cambiato i file con 0 aggiunte e 7 eliminazioni
  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"));
 			}