2
0
genodepkgs/tests/signal.nix
Emery Hemingway a3f8d20d23 Tests: replace most of the Tcl code
Tcl is awful. Generate NOVA test ISOs with a shell script derivation.
2019-10-10 10:34:48 +02:00

14 lines
322 B
Nix

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