genode/repos/base/run/rm_fault.run

48 lines
1.2 KiB
Plaintext
Raw Normal View History

if {[have_spec linux]} {
puts "Platform does not support managed dataspaces"; exit }
2011-12-22 15:19:25 +00:00
#
# We skip the non-executable fault test on platforms where this functionality
# is not supported.
#
proc non_executable_supported { } {
if {[have_spec hw] && [have_spec x86_64]} { return true }
2017-10-17 09:36:10 +00:00
if {[have_spec hw] && [have_spec arm]} { return true }
if {[have_spec nova] && [have_spec x86_64]} { return true }
if {[have_spec foc] && [have_spec x86_64]} { return true }
if {[have_spec foc] && [have_spec arm]} { return true }
if {[have_spec sel4] && [have_spec arm]} { return true }
return false
}
2011-12-22 15:19:25 +00:00
build "core init test/rm_fault"
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>
<start name="test-rm_fault" caps="110">
2011-12-22 15:19:25 +00:00
<resource name="RAM" quantum="10M"/>
<config executable_fault_test="} [non_executable_supported] {"/>
2011-12-22 15:19:25 +00:00
</start>
</config>
}
build_boot_image "core ld.lib.so init test-rm_fault"
2011-12-22 15:19:25 +00:00
append qemu_args "-nographic "
2011-12-22 15:19:25 +00:00
run_genode_until {child "test-rm_fault" exited with exit value 0.*} 300