-- SPDX-License-Identifier: CC0-1.0 let Test = ./test.dhall ? env:DHALL_GENODE_TEST let Genode = Test.Genode let Child = Genode.Init.Child in Test::{ , children = toMap { noux = Child.flat Child.Attributes::{ , binary = "noux" , exitPropagate = True , resources = Genode.Init.Resources::{ , caps = 500 , ram = Genode.units.MiB 10 } , routes = [ Genode.Init.ServiceRoute.parent "Timer" ] , config = Genode.Init.Config::{ , attributes = toMap { stdin = "/script" , stdout = "/dev/log" , stderr = "/dev/log" } , content = [ Genode.Prelude.XML.text '' echo "hello world" '' ] } } } }