Don't try to run or build the tests on Windows because too hard.

This commit is contained in:
David Given 2022-07-17 13:00:39 +02:00
parent 8e4a6ca47d
commit c44f94818f

View file

@ -28,8 +28,10 @@ vars.plats_with_tests = {
"pc86", "pc86",
} }
local is_windows = os.getenv("OS") == "Windows_NT"
local int = {} local int = {}
if os.getenv("OS") ~= "Windows_NT" then if not is_windows then
int[#int+1] = "util/int+pkg" int[#int+1] = "util/int+pkg"
end end
@ -80,16 +82,29 @@ installable {
}, },
} }
normalrule { if not is_windows then
name = "tests", normalrule {
ins = { name = "tests",
"first/testsummary.sh", ins = {
test_packages "first/testsummary.sh",
}, test_packages
outleaves = { },
"stamp" outleaves = {
}, "stamp"
commands = { },
"%{ins}" commands = {
"%{ins}"
}
} }
} else
normalrule {
name = "tests",
ins = {},
outleaves = {
"stamp"
},
commands = {
"touch %{outs}"
}
}
end