genode/repos/libports/recipes/pkg/test-libc_vfs_ram/runtime
Stefan Kalkowski 88b704db19 depot_autopilot: reduce timeouts of test pkgs
Our overall nightly test time greatly decreases when the timeouts for
the single tests are not that over-pessimistic. Using the slowest
platforms as reference, this commit reduces the test timeouts.

Ref #3027
2019-01-07 12:30:40 +01:00

41 lines
954 B
Plaintext

<runtime ram="32M" caps="1000" binary="init">
<events>
<timeout meaning="failed" sec="20" />
<log meaning="succeeded">child "test-libc_vfs" exited with exit value 0</log>
<log meaning="failed">Error: </log>
</events>
<content>
<rom label="ld.lib.so"/>
<rom label="libc.lib.so"/>
<rom label="vfs.lib.so"/>
<rom label="test-libc_vfs"/>
</content>
<config>
<parent-provides>
<service name="ROM"/>
<service name="PD"/>
<service name="RM"/>
<service name="CPU"/>
<service name="LOG"/>
</parent-provides>
<start name="test-libc_vfs" caps="100">
<resource name="RAM" quantum="12M"/>
<route>
<any-service> <parent/> </any-service>
</route>
<config>
<iterations value="1"/>}
<write-read size="1M" buffer_size="8K"/>
<vfs>
<dir name="tmp"> <ram/> </dir>
<dir name="dev"> <log/> </dir>
</vfs>
<libc stdout="/dev/log" cwd="/tmp"/>
</config>
</start>
</config>
</runtime>