2
0
genodepkgs/tests/log.nix
Emery Hemingway ebf3606705 Port NixOS module system
Convert the tests to use the module system from NixOS.
2020-11-01 20:29:19 +01:00

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.")
'';
}