浏览代码

do not try to run Windows path tests when not on Windows

Simon Krajewski 10 年之前
父节点
当前提交
811f230b08
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      tests/sys/src/TestFileSystem.hx

+ 3 - 0
tests/sys/src/TestFileSystem.hx

@@ -93,6 +93,9 @@ class TestFileSystem extends haxe.unit.TestCase {
 	}
 
 	function testWindowsSpecialCases() {
+		if (Sys.systemName() != "Windows") {
+			return;
+		}
 		var withSlash = "C:/";
 		var withBackslash = "C:\\";
 		var without = "C:";