mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
35 lines
735 B
Plaintext
35 lines
735 B
Plaintext
if {[have_spec linux]} {
|
|
puts "Platform does not support managed dataspaces"; exit }
|
|
|
|
build "core init test/rm_nested"
|
|
|
|
create_boot_directory
|
|
|
|
install_config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="CPU"/>
|
|
<service name="RM"/>
|
|
<service name="PD"/>
|
|
<service name="LOG"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> </any-service>
|
|
</default-route>
|
|
<default caps="100"/>
|
|
<start name="test-rm_nested">
|
|
<resource name="RAM" quantum="10M"/>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
build_boot_image "core ld.lib.so init test-rm_nested"
|
|
|
|
append qemu_args "-nographic "
|
|
|
|
run_genode_until ".*--- finished nested region map test ---.*\n" 300
|
|
|
|
grep_output {(Error)}
|
|
compare_output_to {}
|