mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-23 15:32:25 +00:00
02d5efcf3f
The init component used to create the CPU/RAM/PD/ROM sessions (the child environment) for its children by issuing session requests to its parent, which is typically core. This policy was hard-wired. This patch enables the routing of the environment sessions of the children of init according to the configured routing policy. Because there is no hard-wired policy regarding the environment sessions anymore, routes to respective services must be explicitly declared in the init configuration. For this reason, the patch adjusts several run scripts in this respect. This patch removes the outdated '<if-args>' special handling of session labels. The '<if-args>' feature will eventually be removed completely (ref #2250) Issue #2197 Issue #2215 Issue #2233 Issue #2250
73 lines
1.3 KiB
Tcl
73 lines
1.3 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
|
|
#
|
|
|
|
build {
|
|
core init
|
|
test/lx_hybrid_ctors
|
|
}
|
|
|
|
create_boot_directory
|
|
|
|
#
|
|
# Generate config
|
|
#
|
|
|
|
install_config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="RAM"/>
|
|
<service name="CPU"/>
|
|
<service name="PD"/>
|
|
<service name="LOG"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</default-route>
|
|
<start name="test-lx_hybrid_ctors">
|
|
<resource name="RAM" quantum="1M"/>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
#
|
|
# Boot modules
|
|
#
|
|
|
|
# generic modules
|
|
set boot_modules {
|
|
core ld.lib.so init
|
|
test-lx_hybrid_ctors
|
|
}
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
#
|
|
# Execute test case
|
|
#
|
|
|
|
run_genode_until {child "test-lx_hybrid_ctors" exited with exit value 0.*\n} 10
|
|
|
|
#
|
|
# Compare output
|
|
#
|
|
|
|
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 :
|