sigil/tests/signal.nix
2019-10-07 23:39:26 +02:00

16 lines
364 B
Nix

{ pkgs, lib }:
with pkgs;
rec {
name = "signal";
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ehmry ];
testConfig = lib.renderDhallInit ./signal.dhall "{=}";
testScript = ''
file link -s test-signal ${depot.test-signal}/bin/test-signal
append modules { test-signal }
run_genode_until {--- Signalling test finished ---} 80
'';
}