l4re-base-25.08.0

This commit is contained in:
2025-09-12 15:55:45 +02:00
commit d959eaab98
37938 changed files with 9382688 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
-- vim:set ft=lua:
-- Starts the test program and all applications from the required modules list
-- independently without creating any communication channels.
local t = require("rom/test_env")
local L4 = require("L4");
for k,v in ipairs(t.REQUIRED_MODULES) do
L4.default_loader:start({}, "rom/" .. v);
end
-- The pfc cap is passed in to allow the test to reboot the machine once it
-- finishes. Rebooting only happens if the test arguments contain the -b switch.
L4.default_loader:start({ caps = {pfc = L4.Env.icu} }, "rom/" .. t.TEST_PROG);