2
0
Fork 0
genodepkgs/tests/log.dhall

24 lines
574 B
Plaintext
Raw Normal View History

2020-01-22 12:21:39 +01:00
-- SPDX-License-Identifier: CC0-1.0
2020-04-13 20:26:01 +02:00
let Test = ./test.dhall ? env:DHALL_GENODE_TEST
let Genode = Test.Genode
2020-01-22 12:21:39 +01:00
let Child = Genode.Init.Child
2020-04-13 20:26:01 +02:00
in Test::{
, children = toMap
{ test-log =
Child.flat
Child.Attributes::{
, binary = "test-log"
, exitPropagate = True
, resources = Genode.Init.Resources::{
, caps = 500
, ram = Genode.units.MiB 10
}
2020-04-13 20:26:01 +02:00
, routes = [ Genode.Init.ServiceRoute.parent "Timer" ]
}
}
2020-01-22 12:21:39 +01:00
}