2016-11-25 20:02:51 +00:00
|
|
|
include("plat/build.lua")
|
|
|
|
|
|
|
|
definerule("plat_testsuite",
|
|
|
|
{
|
|
|
|
plat = { type="string" },
|
|
|
|
method = { type="string" },
|
|
|
|
},
|
|
|
|
function(e)
|
|
|
|
-- Remember this is executed from the caller's directory; local
|
|
|
|
-- target names will resolve there.
|
|
|
|
local testfiles = filenamesof(
|
|
|
|
"tests/plat/*.c",
|
2017-12-09 22:21:06 +00:00
|
|
|
"tests/plat/dup_e.e",
|
|
|
|
"tests/plat/exg_e.e",
|
2017-12-07 22:16:21 +00:00
|
|
|
"tests/plat/inn_e.e",
|
|
|
|
"tests/plat/rotate_e.e",
|
2016-12-06 21:07:22 +00:00
|
|
|
"tests/plat/*.p",
|
2016-12-31 17:38:52 +00:00
|
|
|
"tests/plat/b/*.b",
|
2017-10-29 18:53:33 +00:00
|
|
|
"tests/plat/bugs/bug-22-inn_mod.mod",
|
|
|
|
"tests/plat/bugs/bug-62-notvar_var_e.c"
|
2016-11-25 20:02:51 +00:00
|
|
|
)
|
|
|
|
|
2016-11-26 10:23:25 +00:00
|
|
|
acklibrary {
|
|
|
|
name = "lib",
|
2016-12-31 17:38:52 +00:00
|
|
|
srcs = {
|
|
|
|
"tests/plat/lib/test.c",
|
|
|
|
"tests/plat/lib/test_b.c",
|
|
|
|
},
|
2016-12-11 22:06:37 +00:00
|
|
|
hdrs = {
|
|
|
|
"tests/plat/lib/test.h",
|
|
|
|
"tests/plat/lib/Test.def"
|
|
|
|
},
|
2016-11-26 10:23:25 +00:00
|
|
|
vars = { plat = e.plat },
|
|
|
|
}
|
|
|
|
|
2016-11-25 20:02:51 +00:00
|
|
|
local tests = {}
|
|
|
|
for _, f in ipairs(testfiles) do
|
2016-12-06 21:07:22 +00:00
|
|
|
local fs = replace(basename(f), "%.[^.]+$", "")
|
|
|
|
local _, _, lang = fs:find("_([^_]+)$")
|
2016-11-25 20:02:51 +00:00
|
|
|
if not lang then
|
|
|
|
lang = "e"
|
|
|
|
end
|
|
|
|
|
|
|
|
local bin = ackprogram {
|
|
|
|
name = fs.."_bin",
|
|
|
|
srcs = { f },
|
2016-11-26 10:23:25 +00:00
|
|
|
deps = { "+lib" },
|
2016-11-25 20:02:51 +00:00
|
|
|
vars = {
|
|
|
|
plat = e.plat,
|
|
|
|
lang = lang,
|
2016-12-31 17:38:52 +00:00
|
|
|
ackcflags = "-O0 -Bmain"
|
2016-11-25 20:02:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tests[#tests+1] = normalrule {
|
|
|
|
name = fs,
|
2016-12-01 22:03:30 +00:00
|
|
|
outleaves = { e.plat.."-"..fs.."-testlog.txt" },
|
2016-11-25 20:02:51 +00:00
|
|
|
ins = {
|
|
|
|
bin,
|
2016-11-29 19:59:43 +00:00
|
|
|
"tests/plat/testdriver.sh",
|
|
|
|
"util/build+testrunner"
|
2016-11-25 20:02:51 +00:00
|
|
|
},
|
|
|
|
commands = {
|
2017-11-08 20:02:56 +00:00
|
|
|
"%{ins[2]} "..e.method.." %{ins[1]} 15 %{ins[3]} > %{outs}; true",
|
2016-11-25 20:02:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2016-12-01 22:03:30 +00:00
|
|
|
return bundle {
|
2016-11-25 20:02:51 +00:00
|
|
|
name = e.name,
|
2016-12-01 22:03:30 +00:00
|
|
|
srcs = tests,
|
2016-11-25 20:02:51 +00:00
|
|
|
}
|
|
|
|
end
|
2016-12-31 17:38:52 +00:00
|
|
|
)
|