mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +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
85 lines
2.3 KiB
Plaintext
85 lines
2.3 KiB
Plaintext
build "core init test/new_delete"
|
|
|
|
create_boot_directory
|
|
|
|
install_config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="LOG"/>
|
|
<service name="RAM"/>
|
|
<service name="ROM"/>
|
|
<service name="CPU"/>
|
|
<service name="PD"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> </any-service>
|
|
</default-route>
|
|
<start name="test-new_delete">
|
|
<resource name="RAM" quantum="10M"/>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
build_boot_image "core ld.lib.so init test-new_delete"
|
|
|
|
append qemu_args "-nographic -m 64"
|
|
|
|
run_genode_until "Test done.*\n" 15
|
|
|
|
grep_output {^\[init -> test-new_delete\]}
|
|
|
|
compare_output_to {
|
|
[init -> test-new_delete] Allocator::alloc()
|
|
[init -> test-new_delete] A
|
|
[init -> test-new_delete] C
|
|
[init -> test-new_delete] B
|
|
[init -> test-new_delete] D
|
|
[init -> test-new_delete] E
|
|
[init -> test-new_delete] ~E
|
|
[init -> test-new_delete] ~D
|
|
[init -> test-new_delete] ~B
|
|
[init -> test-new_delete] ~C
|
|
[init -> test-new_delete] ~A
|
|
[init -> test-new_delete] Allocator::free()
|
|
[init -> test-new_delete] Allocator::alloc()
|
|
[init -> test-new_delete] A
|
|
[init -> test-new_delete] C
|
|
[init -> test-new_delete] B
|
|
[init -> test-new_delete] D
|
|
[init -> test-new_delete] E
|
|
[init -> test-new_delete] throw exception
|
|
[init -> test-new_delete] ~D
|
|
[init -> test-new_delete] ~B
|
|
[init -> test-new_delete] ~C
|
|
[init -> test-new_delete] ~A
|
|
[init -> test-new_delete] Allocator::free()
|
|
[init -> test-new_delete] exception caught
|
|
[init -> test-new_delete] Allocator::alloc()
|
|
[init -> test-new_delete] A
|
|
[init -> test-new_delete] C
|
|
[init -> test-new_delete] B
|
|
[init -> test-new_delete] D
|
|
[init -> test-new_delete] E
|
|
[init -> test-new_delete] ~E
|
|
[init -> test-new_delete] ~D
|
|
[init -> test-new_delete] ~B
|
|
[init -> test-new_delete] ~C
|
|
[init -> test-new_delete] ~A
|
|
[init -> test-new_delete] Allocator::free()
|
|
[init -> test-new_delete] Allocator::alloc()
|
|
[init -> test-new_delete] A
|
|
[init -> test-new_delete] C
|
|
[init -> test-new_delete] B
|
|
[init -> test-new_delete] D
|
|
[init -> test-new_delete] E
|
|
[init -> test-new_delete] throw exception
|
|
[init -> test-new_delete] ~D
|
|
[init -> test-new_delete] ~B
|
|
[init -> test-new_delete] ~C
|
|
[init -> test-new_delete] ~A
|
|
[init -> test-new_delete] Allocator::free()
|
|
[init -> test-new_delete] exception caught
|
|
}
|
|
|
|
#puts "Test succeeded"
|