mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
3bceefc9cf
The functionality of the former "CAP" and "SIGNAL" services is now provided by core's "PD" service.
35 lines
771 B
Plaintext
35 lines
771 B
Plaintext
build "core init test/cap_integrity"
|
|
|
|
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-service>
|
|
</default-route>
|
|
<start name="test-cap_integrity">
|
|
<resource name="RAM" quantum="10M"/>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
build_boot_image "core init test-cap_integrity"
|
|
|
|
append qemu_args "-nographic -m 64"
|
|
|
|
# increase expect buffer size, since there might be many log messages
|
|
match_max -d 100000
|
|
|
|
run_genode_until {child "test-cap_integrity" exited with exit value 0.*\n} 20
|
|
|
|
grep_output {\[init\] test message}
|
|
compare_output_to { }
|