mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
4020766105
Issue #2451
52 lines
744 B
Plaintext
52 lines
744 B
Plaintext
#
|
|
# Build
|
|
#
|
|
|
|
build "core init test/util_mmio"
|
|
|
|
#
|
|
# 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>
|
|
<default caps="100"/>
|
|
<start name="test">
|
|
<binary name="test-util_mmio"/>
|
|
<resource name="RAM" quantum="10M"/>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
build_boot_image "core ld.lib.so init test-util_mmio"
|
|
|
|
#
|
|
# Execution
|
|
#
|
|
|
|
append qemu_args "-nographic "
|
|
|
|
run_genode_until "Test done.*\n" 20
|
|
|
|
#
|
|
# Conclusion
|
|
#
|
|
|
|
grep_output {\[init -\> test\]}
|
|
|
|
compare_output_to {
|
|
[init -> test] Test done
|
|
}
|