2
0
Fork 0
genodepkgs/tests/signal.nix

14 lines
323 B
Nix
Raw Normal View History

2020-01-17 01:24:34 +01:00
# SPDX-License-Identifier: CC0-1.0
2019-11-05 17:38:47 +01:00
{ testEnv, pkgs, ... }:
2019-10-03 19:50:34 +02:00
with pkgs;
testEnv.mkTest rec {
2019-10-03 19:50:34 +02:00
name = "signal";
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ehmry ];
2020-01-17 19:27:04 +01:00
testConfig = ./signal.dhall;
testInputs = [ pkgs.genodeTests ];
testScript = "run_genode_until {--- Signalling test finished ---} 120";
2019-10-03 19:50:34 +02:00
}