2
0
Fork 0
genodepkgs/tests/log.nix

15 lines
239 B
Nix
Raw Normal View History

{ pkgs, ... }:
2020-01-22 12:21:39 +01:00
with pkgs;
{
2020-01-22 12:21:39 +01:00
name = "log";
machine = {
config = ./log.dhall;
inputs = [ (pkgs.genodeSources.depot "test-log") ];
};
testScript = ''
start_all()
machine.wait_until_serial_output("Test done.")
'';
2020-01-22 12:21:39 +01:00
}