2
0
Fork 0
genodepkgs/tests/solo5/multi.nix

25 lines
561 B
Nix
Raw Normal View History

{
name = "solo5-multi";
machine = { pkgs, ... }: {
genode.init.children.tests = {
configFile = "${./.}/solo5.dhall { isAarch64 = ${
if pkgs.stdenv.hostPlatform.isAarch64 then "True" else "False"
} }";
inputs = with pkgs.genodePackages; [
nic_bridge
nic_loopback
2020-11-06 20:59:33 +01:00
ping
sequence
2020-11-06 20:59:33 +01:00
solo5
solo5.tests
vfs_block
vfs_import
];
};
};
testScript = ''
start_all()
machine.wait_until_serial_output("child \"tests\" exited with exit value 0")
'';
}