소스 검색

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