genode/repos/os/recipes/pkg/test-vfs_stress_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

38 lines
894 B
Plaintext

<runtime ram="90M" caps="1000" binary="init">
<requires> <timer/> </requires>
<events>
<timeout meaning="failed" sec="20" />
<log meaning="succeeded">child "vfs_stress" exited with exit value 0</log>
</events>
<content>
<rom label="ld.lib.so"/>
<rom label="vfs.lib.so"/>
<rom label="vfs_stress"/>
</content>
<config>
<affinity-space width="3" height="2" />
<parent-provides>
<service name="CPU"/>
<service name="IO_PORT"/>
<service name="IRQ"/>
<service name="LOG"/>
<service name="PD"/>
<service name="RM"/>
<service name="ROM"/>
<service name="Timer"/>
</parent-provides>
<default-route>
<any-service> <parent/> <any-child/> </any-service>
</default-route>
<default caps="100"/>
<start name="vfs_stress">
<resource name="RAM" quantum="80M"/>
<config depth="16"> <vfs> <ram/> </vfs> </config>
</start>
</config>
</runtime>