mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 22:23:16 +00:00
4020766105
Issue #2451
36 lines
779 B
Plaintext
36 lines
779 B
Plaintext
build "core init test/ada"
|
|
|
|
create_boot_directory
|
|
|
|
install_config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="LOG"/>
|
|
<service name="PD"/>
|
|
<service name="CPU"/>
|
|
<service name="ROM"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> </any-service>
|
|
</default-route>
|
|
<default caps="100"/>
|
|
<start name="test-ada">
|
|
<resource name="RAM" quantum="10M"/>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
build_boot_image "core ld.lib.so init test-ada"
|
|
|
|
append qemu_args "-nographic "
|
|
|
|
run_genode_until {child "test-ada" exited with exit value 0.*} 20
|
|
|
|
grep_output {init -> test-ada}
|
|
unify_output {0x[0-9a-f]+} "UNIFIED"
|
|
|
|
compare_output_to {
|
|
[init -> test-ada] add called with a=13, b=14, result at address UNIFIED
|
|
[init -> test-ada] print_int called with argument 27
|
|
}
|