genode/repos/os/run/config_args.run
Emery Hemingway 18504b4801 merge lib/config_args with lib/posix
Merging the config_args library with the POSIX library supplies
'argc' and 'argv' arguments to components using a 'main' entry.

Fix #2218
Ref #1987
2017-01-20 16:46:55 +01:00

41 lines
945 B
Plaintext

build "core init drivers/timer test/config_args"
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="IRQ"/>
<service name="IO_PORT"/>
<service name="LOG"/>
</parent-provides>
<default-route>
<any-service> <parent/> <any-child/> </any-service>
</default-route>
<start name="timer">
<resource name="RAM" quantum="1M"/>
<provides><service name="Timer"/></provides>
</start>
<start name="test-config_args">
<resource name="RAM" quantum="10M"/>
<config>
<arg value="test-config_args"/>
<arg value="-testarg"/>
</config>
</start>
</config>
}
build_boot_image "core ld.lib.so init timer test-config_args libc.lib.so libm.lib.so"
append qemu_args "-nographic -m 64"
run_genode_until {--- end of config args test ---} 10
puts "Test succeeded"