2
0
Fork 0
genodepkgs/tests/log.nix

17 lines
328 B
Nix

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