2
0
Fork 0
genodepkgs/tests/execve.nix

16 lines
349 B
Nix
Raw Normal View History

2020-11-07 16:42:31 +01:00
{
name = "execve";
machine = { pkgs, ... }: {
genode.init.children.test-execve = {
configFile = ./execve.dhall;
inputs = with pkgs.genodePackages; [ libc posix test-libc_execve ];
};
};
/*
testScript = ''
start_all()
machine.wait_until_serial_output("child "test-execve" exited with exit value 0")
'';
*/
}