2
0
Fork 0
genodepkgs/tests/log.nix

14 lines
266 B
Nix

{
name = "log";
machine = { config, pkgs, ... }: {
genode.init = {
config = ./log.dhall;
inputs = [ (pkgs.genodeSources.depot "test-log") ];
};
};
testScript = ''
start_all()
machine.wait_until_serial_output("Test done.")
'';
}