sigil/tests/signal.nix
Emery Hemingway 1d3e849bc4 Pass a testEnv attrset when importing test files
This allows test files to contain multiple test derivations and check
test harness attributes.
2019-10-23 00:54:35 +02:00

14 lines
349 B
Nix

{ testEnv, pkgs }:
with pkgs;
testEnv.mkTest rec {
name = "signal";
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ehmry ];
testConfig = testEnv.lib.renderDhallInit ./signal.dhall "{=}";
bootModules.test-signal = "${depot.test-signal}/bin/test-signal";
testScript = "run_genode_until {--- Signalling test finished ---} 120";
}