2
0
Fork 0
genodepkgs/tests/log.dhall

22 lines
469 B
Plaintext
Raw Normal View History

2020-01-22 12:21:39 +01:00
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
}
}
2020-01-22 12:21:39 +01:00
}