mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
3ba61a2ddf
Issue #1899
28 lines
535 B
Plaintext
28 lines
535 B
Plaintext
build "core init test/rust"
|
|
|
|
create_boot_directory
|
|
|
|
install_config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="LOG"/>
|
|
<service name="RM"/>
|
|
<service name="ROM"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> </any-service>
|
|
</default-route>
|
|
<start name="test-rust">
|
|
<resource name="RAM" quantum="10M"/>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
build_boot_image "core init test-rust ld.lib.so libc.lib.so"
|
|
|
|
append qemu_args "-nographic -m 64"
|
|
|
|
run_genode_until { 42 } 10
|
|
|
|
puts "Test succeeded"
|