2014-10-09 12:24:27 +00:00
|
|
|
#
|
|
|
|
# \brief Test CPU-scheduler implementation of core
|
|
|
|
# \author Martin Stein
|
|
|
|
# \date 2014-09-30
|
|
|
|
#
|
|
|
|
|
|
|
|
# build program images
|
2016-09-13 09:01:15 +00:00
|
|
|
build "core init test/cpu_scheduler"
|
2014-10-09 12:24:27 +00:00
|
|
|
|
|
|
|
# create directory where the boot files are written to
|
|
|
|
create_boot_directory
|
|
|
|
|
2016-05-18 09:57:42 +00:00
|
|
|
# the init config is not used but the build system needs it
|
2016-09-13 09:01:15 +00:00
|
|
|
install_config {
|
|
|
|
<config>
|
|
|
|
<parent-provides>
|
|
|
|
<service name="LOG"/>
|
|
|
|
<service name="RM"/>
|
|
|
|
</parent-provides>
|
|
|
|
<default-route>
|
|
|
|
<any-service> <parent/> </any-service>
|
|
|
|
</default-route>
|
|
|
|
<start name="test-cpu_scheduler">
|
|
|
|
<resource name="RAM" quantum="10M"/>
|
|
|
|
</start>
|
|
|
|
</config>}
|
2016-05-18 09:57:42 +00:00
|
|
|
|
2014-10-09 12:24:27 +00:00
|
|
|
# create single boot image from the compiled program images
|
2016-09-13 09:01:15 +00:00
|
|
|
build_boot_image "core init test-cpu_scheduler"
|
2014-10-09 12:24:27 +00:00
|
|
|
|
|
|
|
# configure qemu to use 64 MB RAM and avoid GUI mode
|
|
|
|
append qemu_args " -m 64 -nographic"
|
|
|
|
|
|
|
|
# execute the test in qemu if the targeted platform is supported
|
|
|
|
run_genode_until "done.*\n" 10
|
|
|
|
|
|
|
|
# check the output
|
2016-09-13 09:01:15 +00:00
|
|
|
grep_output {\[init -> test-cpu_scheduler\]}
|
|
|
|
compare_output_to { [init -> test-cpu_scheduler] done }
|