2
0
Fork 0
genodepkgs/tests/log.nix

14 lines
316 B
Nix
Raw Normal View History

2020-01-22 12:21:39 +01:00
# SPDX-License-Identifier: CC0-1.0
{ testEnv, pkgs, ... }:
with pkgs;
testEnv.mkTest rec {
name = "log";
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ehmry ];
testConfig = ./log.dhall;
testInputs = [ (pkgs.genodeSources.depot "test-log") ];
2020-01-22 12:21:39 +01:00
testScript = "run_genode_until {Test done.} 120";
}