You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
306 B
Nix
14 lines
306 B
Nix
{ testEnv, pkgs, ... }:
|
|
with pkgs;
|
|
|
|
testEnv.mkTest rec {
|
|
name = "log";
|
|
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ehmry ];
|
|
|
|
testConfig = testEnv.lib.renderDhallInit ./log.dhall "{=}";
|
|
|
|
bootModules.test-log = "${base}/bin/test-log";
|
|
|
|
testScript = "run_genode_until {Test done.} 10";
|
|
}
|