mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 21:57:55 +00:00
bfa2ad7d47
Test and run script showcasing issue #1335. The test mainly tries out syscalls which should not succeed.
33 lines
642 B
Plaintext
33 lines
642 B
Plaintext
build "core init test/platform"
|
|
|
|
create_boot_directory
|
|
|
|
install_config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="RAM"/>
|
|
<service name="CPU"/>
|
|
<service name="RM"/>
|
|
<service name="CAP"/>
|
|
<service name="PD"/>
|
|
<service name="SIGNAL"/>
|
|
<service name="LOG"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> </any-service>
|
|
</default-route>
|
|
<start name="test-platform">
|
|
<resource name="RAM" quantum="1M"/>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
build_boot_image "core init test-platform"
|
|
|
|
append qemu_args "-nographic -m 128"
|
|
|
|
run_genode_until {Test finished} 15
|
|
|
|
puts "\nTest succeeded"
|