Genode Packages collection
https://git.sr.ht/~ehmry/genodepkgs/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
306 B
13 lines
306 B
{ 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"; |
|
}
|
|
|