2
0
Fork 0
genodepkgs/tests/log.nix

14 lines
266 B
Nix

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