sigil/tests/hello.nix

14 lines
294 B
Nix

{
name = "hello";
machine = { pkgs, ... }: {
genode.init.children.hello = {
binary = "${pkgs.hello}/bin/hello";
configFile = ./hello.dhall;
};
};
testScript = ''
start_all()
machine.wait_until_serial_output("child \"init\" exited with exit value 0")
'';
}