mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
ed62199957
The test uses only stuff from the base repo. Ref #1987
68 lines
2.7 KiB
Plaintext
68 lines
2.7 KiB
Plaintext
build "core init test/reconstructible"
|
|
|
|
create_boot_directory
|
|
|
|
install_config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="RAM"/>
|
|
<service name="CPU"/>
|
|
<service name="RM"/>
|
|
<service name="PD"/>
|
|
<service name="LOG"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</default-route>
|
|
<start name="test-reconstructible">
|
|
<resource name="RAM" quantum="1M"/>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
build_boot_image "core ld.lib.so init test-reconstructible"
|
|
|
|
append qemu_args "-nographic -m 64"
|
|
|
|
run_genode_until {.*--- Reconstructible utility test finished ---.*\n} 10
|
|
|
|
grep_output {-> test-reconstructible}
|
|
|
|
compare_output_to {
|
|
[init -> test-reconstructible] --- Reconstructible utility test ---
|
|
[init -> test-reconstructible] construct Object 1
|
|
[init -> test-reconstructible] construct Object 2
|
|
[init -> test-reconstructible] create Compound object
|
|
[init -> test-reconstructible] construct Member_with_reference
|
|
[init -> test-reconstructible] construct Compound
|
|
[init -> test-reconstructible] compound.member.constructed returns 1
|
|
[init -> test-reconstructible] compound.lazy_member.constructed returns 0
|
|
[init -> test-reconstructible] construct lazy member
|
|
[init -> test-reconstructible] construct Member_with_reference
|
|
[init -> test-reconstructible] compound.lazy_member.constructed returns 1
|
|
[init -> test-reconstructible] call method on member (with reference to Object 1)
|
|
[init -> test-reconstructible] const method called on Object 1
|
|
[init -> test-reconstructible] reconstruct member with Object 2 as reference
|
|
[init -> test-reconstructible] destruct Member_with_reference
|
|
[init -> test-reconstructible] construct Member_with_reference
|
|
[init -> test-reconstructible] call method on member
|
|
[init -> test-reconstructible] const method called on Object 2
|
|
[init -> test-reconstructible] destruct member
|
|
[init -> test-reconstructible] destruct Member_with_reference
|
|
[init -> test-reconstructible] try to call method on member, catch exception
|
|
[init -> test-reconstructible] got exception, as expected
|
|
[init -> test-reconstructible] destruct Compound and Objects 1 and 2
|
|
[init -> test-reconstructible] destruct Compound
|
|
[init -> test-reconstructible] destruct Member_with_reference
|
|
[init -> test-reconstructible] destruct Object 2
|
|
[init -> test-reconstructible] destruct Object 1
|
|
[init -> test-reconstructible] construct Throwing object
|
|
[init -> test-reconstructible] construct Throwing -> don't throw
|
|
[init -> test-reconstructible] destruct Throwing
|
|
[init -> test-reconstructible] construct Throwing -> throw exception
|
|
[init -> test-reconstructible] got exception, as expected
|
|
[init -> test-reconstructible] --- Reconstructible utility test finished ---
|
|
}
|
|
|