mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 22:23:16 +00:00
88b704db19
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
38 lines
894 B
Plaintext
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>
|