mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 21:57:55 +00:00
e2661c58dc
Fix #2759
50 lines
1.1 KiB
Plaintext
50 lines
1.1 KiB
Plaintext
build "core init test/libc_getenv"
|
|
|
|
create_boot_directory
|
|
|
|
install_config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="CPU"/>
|
|
<service name="LOG"/>
|
|
<service name="PD"/>
|
|
<service name="RM"/>
|
|
<service name="ROM"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</default-route>
|
|
<default caps="100"/>
|
|
<start name="test-libc_getenv">
|
|
<resource name="RAM" quantum="4M"/>
|
|
<config>
|
|
<vfs> <dir name="dev"> <log/> </dir> </vfs>
|
|
<libc stdout="/dev/log"/>
|
|
<arg value="test-libc_getenv"/>
|
|
<arg value="foo"/>
|
|
<arg value="bar"/>
|
|
<arg value="baz"/>
|
|
<env key="foo" value="bar"/>
|
|
<env key="bar" value="foo"/>
|
|
</config>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
build_boot_image {
|
|
core init test-libc_getenv
|
|
ld.lib.so libc.lib.so vfs.lib.so libm.lib.so posix.lib.so
|
|
}
|
|
|
|
append qemu_args " -nographic "
|
|
|
|
run_genode_until "child .* exited with exit value 0.*\n" 20
|
|
|
|
grep_output {\[init -\> test-libc_getenv\]}
|
|
|
|
compare_output_to {
|
|
[init -> test-libc_getenv] foo="bar"
|
|
[init -> test-libc_getenv] bar="foo"
|
|
[init -> test-libc_getenv] baz="(null)"
|
|
}
|