mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
61 lines
1.1 KiB
Plaintext
61 lines
1.1 KiB
Plaintext
|
#
|
||
|
# Build
|
||
|
#
|
||
|
|
||
|
build "core init test/fpu"
|
||
|
|
||
|
#
|
||
|
# Boot image
|
||
|
#
|
||
|
|
||
|
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="LOG"/>
|
||
|
<service name="SIGNAL"/>
|
||
|
</parent-provides>
|
||
|
<default-route>
|
||
|
<any-service> <parent/> </any-service>
|
||
|
</default-route>
|
||
|
<start name="test">
|
||
|
<binary name="test-fpu"/>
|
||
|
<resource name="RAM" quantum="10M"/>
|
||
|
</start>
|
||
|
</config>
|
||
|
}
|
||
|
|
||
|
build_boot_image "core init test-fpu"
|
||
|
|
||
|
#
|
||
|
# Execution
|
||
|
#
|
||
|
|
||
|
append qemu_args "-nographic -m 64"
|
||
|
|
||
|
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
|
||
|
}
|
||
|
|