2
0
Fork 0
genodepkgs/tests/log.nix

15 lines
278 B
Nix
Raw Normal View History

2019-10-03 19:50:34 +02:00
{ pkgs, lib }:
with pkgs;
rec {
name = "log";
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ehmry ];
testConfig = lib.renderDhallInit ./log.dhall "{=}";
2019-10-03 19:50:34 +02:00
testScript = ''
2019-10-08 09:13:07 +02:00
collect_modules ${depot.test-log}/bin/*
2019-10-03 19:50:34 +02:00
run_genode_until {Test done.} 10
'';
}