2
0
Förgrening 0
genodepkgs/tests/log.nix

15 rader
239 B
Nix

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