mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 23:12:24 +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.4 KiB
Plaintext
92 lines
2.4 KiB
Plaintext
<runtime ram="32M" caps="1000" binary="init">
|
|
|
|
<requires> <timer/> </requires>
|
|
|
|
<fail after_seconds="20"/>
|
|
<succeed><config iteration="4"/></succeed>
|
|
|
|
<content>
|
|
<rom label="ld.lib.so"/>
|
|
<rom label="dynamic_rom"/>
|
|
<rom label="fs_rom"/>
|
|
<rom label="vfs"/>
|
|
<rom label="vfs.lib.so"/>
|
|
<rom label="rom_logger"/>
|
|
<rom label="rom_to_file"/>
|
|
</content>
|
|
|
|
<config>
|
|
<parent-provides>
|
|
<service name="CPU"/>
|
|
<service name="IO_MEM"/>
|
|
<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="ram_fs">
|
|
<resource name="RAM" quantum="10M"/>
|
|
<binary name="vfs"/>
|
|
<provides><service name="File_system"/></provides>
|
|
<config>
|
|
<vfs> <ram/> </vfs>
|
|
<policy label_prefix="rom_to_file" root="/" writeable="yes"/>
|
|
<policy label_prefix="fs_rom" root="/" writeable="no"/>
|
|
</config>
|
|
</start>
|
|
<start name="dynamic_rom">
|
|
<resource name="RAM" quantum="4M"/>
|
|
<provides><service name="ROM"/></provides>
|
|
<config verbose="yes">
|
|
<rom name="dynamic_rom">
|
|
<inline description="iteration 1">
|
|
<config iteration="1"/>
|
|
</inline>
|
|
<sleep milliseconds="2000"/>
|
|
<inline description="iteration 2">
|
|
<config iteration="2"/>
|
|
</inline>
|
|
<sleep milliseconds="2000"/>
|
|
<inline description="iteration 3">
|
|
<config iteration="3"/>
|
|
</inline>
|
|
<sleep milliseconds="2000"/>
|
|
<inline description="iteration 4">
|
|
<config iteration="4"/>
|
|
</inline>
|
|
<sleep milliseconds="2000"/>
|
|
</rom>
|
|
</config>
|
|
</start>
|
|
<start name="rom_to_file">
|
|
<resource name="RAM" quantum="2M"/>
|
|
<config rom="dynamic_rom">
|
|
<vfs> <fs/> </vfs>
|
|
</config>
|
|
<route>
|
|
<service name="ROM" label="dynamic_rom"> <child name="dynamic_rom"/> </service>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</route>
|
|
</start>
|
|
<start name="fs_rom">
|
|
<resource name="RAM" quantum="2M"/>
|
|
<provides><service name="ROM"/></provides>
|
|
</start>
|
|
<start name="rom_logger">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<config rom="dynamic_rom"/>
|
|
<route>
|
|
<service name="ROM" label="dynamic_rom"> <child name="fs_rom"/> </service>
|
|
<any-service> <parent/> </any-service>
|
|
</route>
|
|
</start>
|
|
</config>
|
|
</runtime>
|