2011-12-22 15:19:25 +00:00
|
|
|
#
|
|
|
|
# \brief Test if global static constructors in hybrid applications and
|
|
|
|
# host shared libs get called
|
|
|
|
# \author Christian Prochaska
|
|
|
|
# \date 2011-11-24
|
|
|
|
#
|
|
|
|
|
2023-05-04 12:11:51 +00:00
|
|
|
build { core init lib/ld test/lx_hybrid_ctors }
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
create_boot_directory
|
|
|
|
|
|
|
|
install_config {
|
|
|
|
<config>
|
|
|
|
<parent-provides>
|
|
|
|
<service name="ROM"/>
|
2017-01-18 16:10:07 +00:00
|
|
|
<service name="CPU"/>
|
|
|
|
<service name="PD"/>
|
2011-12-22 15:19:25 +00:00
|
|
|
<service name="LOG"/>
|
|
|
|
</parent-provides>
|
|
|
|
<default-route>
|
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
|
|
</default-route>
|
2017-05-07 20:36:11 +00:00
|
|
|
<default caps="100"/>
|
2018-07-04 16:48:04 +00:00
|
|
|
<start name="test-lx_hybrid_ctors" ld="no">
|
2011-12-22 15:19:25 +00:00
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
</start>
|
|
|
|
</config>
|
|
|
|
}
|
|
|
|
|
2023-05-04 12:11:51 +00:00
|
|
|
build_boot_image [build_artifacts]
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2014-08-22 12:43:54 +00:00
|
|
|
run_genode_until {child "test-lx_hybrid_ctors" exited with exit value 0.*\n} 10
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
grep_output {\[init -\> test-lx_hybrid_ctors\]}
|
|
|
|
|
|
|
|
compare_output_to {
|
|
|
|
[init -> test-lx_hybrid_ctors] Global static constructor of host library called.
|
2019-01-30 16:53:16 +00:00
|
|
|
[init -> test-lx_hybrid_ctors] Global static constructor of Genode application called.
|
2011-12-22 15:19:25 +00:00
|
|
|
[init -> test-lx_hybrid_ctors] --- lx_hybrid global static constructor test ---
|
|
|
|
[init -> test-lx_hybrid_ctors] --- returning from main ---
|
|
|
|
}
|
|
|
|
|
|
|
|
# vi: set ft=tcl :
|