mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-18 21:27: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
34 lines
756 B
Plaintext
34 lines
756 B
Plaintext
build { core init lib/ld test/cap_integrity }
|
|
|
|
create_boot_directory
|
|
|
|
install_config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<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" caps="100" ld="no">
|
|
<resource name="RAM" quantum="10M"/>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
build_boot_image [build_artifacts]
|
|
|
|
append qemu_args "-nographic "
|
|
|
|
# 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 { }
|