2
0
Fork 0
genodepkgs/tests/signal.nix

16 lines
311 B
Nix
Raw Normal View History

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