mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-27 01:11:06 +00:00
c47a6b0830
* Removes the <event> tag from all test package runtime files and replaces the contained <timeout> and <log> sub-tags with the new tags <succeed> and <fail>. If a <succeed> or <fail> tag has a content, it defines a log pattern that should be recognized and render the test failed or successful. If a <succeed> or <fail> tag has an attribute after_seconds that is not set to 0, it defines a timeout after which the test should be rendered failed or successful. * Adapts the Depot Autopilot to support the new syntax in the test-package runtime files. However, for now, the Depot Autopilot is kept compatible to the old syntax as well. If the <events> tag is present, it is prioritized over the new syntax. Fixes #4922
92 lines
2.6 KiB
Plaintext
92 lines
2.6 KiB
Plaintext
<runtime ram="64M" caps="1000" binary="init">
|
|
|
|
<requires> <timer/> </requires>
|
|
|
|
<fail after_seconds="80"/>
|
|
<succeed>child "block_tester" exited with exit value 0</succeed>
|
|
<fail>Error: </fail>
|
|
|
|
<content>
|
|
<rom label="block_tester"/>
|
|
<rom label="ld.lib.so"/>
|
|
<rom label="vfs"/>
|
|
<rom label="vfs.lib.so"/>
|
|
<rom label="vfs_block"/>
|
|
<rom label="vfs_import.lib.so"/>
|
|
</content>
|
|
|
|
<config>
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="IRQ"/>
|
|
<service name="IO_MEM"/>
|
|
<service name="IO_PORT"/>
|
|
<service name="PD"/>
|
|
<service name="RM"/>
|
|
<service name="CPU"/>
|
|
<service name="LOG"/>
|
|
<service name="TRACE"/>
|
|
<service name="Timer"/>
|
|
</parent-provides>
|
|
|
|
<default-route>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</default-route>
|
|
|
|
<default caps="100"/>
|
|
|
|
<start name="vfs_block" caps="150">
|
|
<resource name="RAM" quantum="38M"/>
|
|
<provides> <service name="Block"/> </provides>
|
|
<config>
|
|
<vfs>
|
|
<ram/>
|
|
<import>
|
|
<zero name="block_file" size="32M"/>
|
|
</import>
|
|
</vfs>
|
|
<policy label_prefix="block_tester" file="/block_file" block_size="512" writeable="yes"/>
|
|
</config>
|
|
<route>
|
|
<any-service> <parent/> </any-service>
|
|
</route>
|
|
</start>
|
|
|
|
<start name="block_tester" caps="200">
|
|
<resource name="RAM" quantum="8M"/>
|
|
<config verbose="no" report="no" log="yes" stop_on_error="no">
|
|
<tests>
|
|
<sequential length="30M" size="4K" batch="32"/>
|
|
<random length="30M" size="512K" seed="0xc0ffee"/>
|
|
<ping_pong length="30M" size="16K"/>
|
|
<sequential length="16M" size="64K" batch="32" write="yes"/>
|
|
<replay verbose="no" batch="8">
|
|
<request type="read" lba="0" count="1"/>
|
|
<request type="write" lba="0" count="1"/>
|
|
<request type="read" lba="2048" count="1016"/>
|
|
<request type="read" lba="0" count="1"/>
|
|
<request type="write" lba="0" count="1"/>
|
|
<request type="read" lba="2048" count="1016"/>
|
|
<request type="write" lba="0" count="1"/>
|
|
<request type="sync" lba="0" count="1"/>
|
|
|
|
<request type="read" lba="4096" count="1"/>
|
|
<request type="write" lba="0" count="1"/>
|
|
<request type="read" lba="1024" count="2048"/>
|
|
<request type="write" lba="4096" count="2048"/>
|
|
<request type="write" lba="0" count="1"/>
|
|
<request type="write" lba="2048" count="512"/>
|
|
<request type="write" lba="5696" count="1"/>
|
|
<request type="sync" lba="0" count="1"/>
|
|
</replay>
|
|
</tests>
|
|
</config>
|
|
<route>
|
|
<service name="Block"> <child name="vfs_block"/> </service>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</route>
|
|
</start>
|
|
|
|
</config>
|
|
</runtime>
|