2014-04-29 15:19:08 +00:00
|
|
|
#
|
|
|
|
# Build
|
|
|
|
#
|
|
|
|
|
|
|
|
build "core init test/fpu"
|
|
|
|
|
|
|
|
#
|
|
|
|
# Boot image
|
|
|
|
#
|
|
|
|
|
|
|
|
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>
|
2017-05-07 20:36:11 +00:00
|
|
|
<default caps="100"/>
|
2014-04-29 15:19:08 +00:00
|
|
|
<start name="test">
|
|
|
|
<binary name="test-fpu"/>
|
|
|
|
<resource name="RAM" quantum="10M"/>
|
|
|
|
</start>
|
|
|
|
</config>
|
|
|
|
}
|
|
|
|
|
2016-12-01 18:00:11 +00:00
|
|
|
build_boot_image "core ld.lib.so init test-fpu"
|
2014-04-29 15:19:08 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Execution
|
|
|
|
#
|
|
|
|
|
2017-05-23 13:05:55 +00:00
|
|
|
append qemu_args "-nographic "
|
2014-04-29 15:19:08 +00:00
|
|
|
|
|
|
|
run_genode_until "test done.*\n" 60
|
|
|
|
|
|
|
|
grep_output {^\[init -\> test\]}
|
|
|
|
|
|
|
|
compare_output_to {
|
|
|
|
[init -> test] FPU user started
|
|
|
|
[init -> test] FPU user started
|
|
|
|
[init -> test] FPU user started
|
|
|
|
[init -> test] FPU user started
|
|
|
|
[init -> test] FPU user started
|
|
|
|
[init -> test] FPU user started
|
|
|
|
[init -> test] FPU user started
|
|
|
|
[init -> test] FPU user started
|
|
|
|
[init -> test] FPU user started
|
|
|
|
[init -> test] FPU user started
|
|
|
|
[init -> test] test done
|
|
|
|
}
|
|
|
|
|