1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
return function(s, common, kernel_obj)
local tests = {}
local obj_nokmain = {}
for name in TableWalk(kernel_obj) do
if not name:find('kmain') then
table.insert(obj_nokmain, name)
end
end
for _, name in pairs({
"breakpoint",
"btree1", "btree2",
"cmdline",
"hashtbl1", "hashtbl2",
"kmalloc",
"region1"
}) do
local test_config = TableDeepCopy(s.common_settings)
test_config.cc.includes:Add("src/kernel/include",
"src/common/include/kogata",
"src/tests/ktests/"..name)
test_config.cc.flags:Add('-DBUILD_KERNEL_TEST')
test_config.link.flags:Add("-T src/kernel/linker.ld")
test_config.cc.extension = ".ktest_" .. name .. ".o"
local kmain = Compile(test_config, "src/kernel/core/kmain.c")
local bin = Link(test_config, "tests/ktest_"..name,
{obj_nokmain, kmain, common.libkogata, common.libc, common.libalgo})
local out = bin .. ".log"
AddJob(out, "ktest " .. name, "./src/tests/ktests/run_qemu_test.sh " .. bin .. " " .. out)
AddDependency(out, bin)
table.insert(tests, out)
end
return tests
end
|