소스 검색

[cpp] test Sys.command with raw cmd string

Andy Li 9 년 전
부모
커밋
cd7f5a751c
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      tests/sys/src/TestSys.hx

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

@@ -29,12 +29,10 @@ class TestSys extends TestCommandBase {
 	}
 	#end
 
-	#if (neko || python || php || java || cs)
 	function testRawCommand() {
 		var bin = sys.FileSystem.absolutePath(ExitCode.bin);
 		var native = sys.FileSystem.absolutePath(ExitCode.getNative());
 		var exitCode = run('$native 1 || $native 0');
 		assertEquals(0, exitCode);
 	}
-	#end
 }