mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
f119d9ee8b
The patch also removes a few legacies along the way, unifies the coding style, and cuts back superfluous comments. Issue #4860
44 lines
1.1 KiB
Tcl
44 lines
1.1 KiB
Tcl
#
|
|
# \brief Test if global static constructors in hybrid applications and
|
|
# host shared libs get called
|
|
# \author Christian Prochaska
|
|
# \date 2011-11-24
|
|
#
|
|
|
|
build { core init lib/ld test/lx_hybrid_ctors }
|
|
|
|
create_boot_directory
|
|
|
|
install_config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="CPU"/>
|
|
<service name="PD"/>
|
|
<service name="LOG"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</default-route>
|
|
<default caps="100"/>
|
|
<start name="test-lx_hybrid_ctors" ld="no">
|
|
<resource name="RAM" quantum="1M"/>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
build_boot_image [build_artifacts]
|
|
|
|
run_genode_until {child "test-lx_hybrid_ctors" exited with exit value 0.*\n} 10
|
|
|
|
grep_output {\[init -\> test-lx_hybrid_ctors\]}
|
|
|
|
compare_output_to {
|
|
[init -> test-lx_hybrid_ctors] Global static constructor of host library called.
|
|
[init -> test-lx_hybrid_ctors] Global static constructor of Genode application called.
|
|
[init -> test-lx_hybrid_ctors] --- lx_hybrid global static constructor test ---
|
|
[init -> test-lx_hybrid_ctors] --- returning from main ---
|
|
}
|
|
|
|
# vi: set ft=tcl :
|