mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
4a30c13c2d
* Increase test-thread count to trigger quota exceeding on all platforms * Synchronize test-thread destruction, otherwise an half-destructed thread object can lead to an error message of the thread to be destructed, which causes a deadlock, when the destructed thread still holds the log lock * Limit SMP settings for QEMU to x86 (Ref #2307)
75 lines
1.3 KiB
Plaintext
75 lines
1.3 KiB
Plaintext
#
|
|
# Build
|
|
#
|
|
|
|
set build_components {
|
|
core init
|
|
drivers/timer
|
|
test/trace
|
|
lib/trace/policy/null
|
|
app/top
|
|
}
|
|
|
|
build $build_components
|
|
|
|
create_boot_directory
|
|
|
|
#
|
|
# Generate config
|
|
#
|
|
|
|
append config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="RAM"/>
|
|
<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"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</default-route>
|
|
<start name="timer">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<provides><service name="Timer"/></provides>
|
|
</start>
|
|
<start name="test-trace">
|
|
<resource name="RAM" quantum="10M"/>
|
|
<config>
|
|
<trace_policy label="init -> test-trace" module="null" />
|
|
</config>
|
|
</start>
|
|
<start name="top">
|
|
<resource name="RAM" quantum="2M"/>
|
|
<config period_ms="2000"/>
|
|
</start>
|
|
</config>}
|
|
|
|
install_config $config
|
|
|
|
#
|
|
# Boot modules
|
|
#
|
|
|
|
# generic modules
|
|
set boot_modules {
|
|
core ld.lib.so init
|
|
timer
|
|
top
|
|
test-trace
|
|
null
|
|
}
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
append qemu_args " -nographic -serial mon:stdio -m 256 "
|
|
append_if [have_spec x86] qemu_args " -smp 2 "
|
|
|
|
run_genode_until {.*child "test-trace" exited with exit value 0.*} 30
|