mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
36 lines
789 B
Plaintext
36 lines
789 B
Plaintext
if {[have_spec linux] || [have_spec nova] || [have_spec pistachio]} {
|
|
puts "Platform doea not support managed dataspaces"; exit }
|
|
|
|
build "core init test/rm_fault"
|
|
|
|
create_boot_directory
|
|
|
|
install_config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="RAM"/>
|
|
<service name="CPU"/>
|
|
<service name="RM"/>
|
|
<service name="CAP"/>
|
|
<service name="PD"/>
|
|
<service name="SIGNAL"/>
|
|
<service name="LOG"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> </any-service>
|
|
</default-route>
|
|
<start name="test-rmfault">
|
|
<resource name="RAM" quantum="10M"/>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
build_boot_image "core init test-rmfault"
|
|
|
|
append qemu_args "-nographic -m 64"
|
|
|
|
run_genode_until {child exited with exit value 0.*} 10
|
|
|
|
puts "Test succeeded"
|