2011-12-22 15:19:25 +00:00
|
|
|
#
|
|
|
|
# \brief Test for 'tar_rom' service
|
|
|
|
# \author Norman Feske
|
|
|
|
# \date 2010-09-07
|
|
|
|
#
|
|
|
|
# The test spawns a sub init, which uses a 'tar_rom' instance
|
|
|
|
# rather than core's ROM service. The 'tar_rom' service manages
|
|
|
|
# a TAR archive containing the binary of the 'test-timer' program.
|
|
|
|
# The nested init instance tries to start this program. The
|
|
|
|
# test succeeds when the test-timer program prints its first
|
|
|
|
# line of LOG output.
|
|
|
|
#
|
|
|
|
|
2012-11-06 16:16:06 +00:00
|
|
|
#
|
|
|
|
# On Linux, programs can be executed only if present as a file on the Linux
|
|
|
|
# file system ('execve' takes a file name as argument). Data extracted via
|
|
|
|
# 'tar_rom' is not represented as file. Hence, it cannot be executed.
|
|
|
|
#
|
|
|
|
if {[have_spec linux]} { puts "Run script does not support Linux"; exit 0 }
|
|
|
|
|
2023-05-04 14:18:04 +00:00
|
|
|
build { core init timer lib/ld test/timer server/tar_rom }
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
create_boot_directory
|
|
|
|
|
|
|
|
install_config {
|
|
|
|
<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"/>
|
|
|
|
</parent-provides>
|
|
|
|
<default-route>
|
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
|
|
</default-route>
|
2017-05-07 20:36:11 +00:00
|
|
|
<default caps="100"/>
|
2011-12-22 15:19:25 +00:00
|
|
|
<start name="timer">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides><service name="Timer"/></provides>
|
|
|
|
</start>
|
|
|
|
<start name="tar_rom">
|
2016-08-05 09:35:43 +00:00
|
|
|
<resource name="RAM" quantum="6M"/>
|
2011-12-22 15:19:25 +00:00
|
|
|
<provides><service name="ROM"/></provides>
|
|
|
|
<config>
|
|
|
|
<archive name="archive.tar"/>
|
|
|
|
</config>
|
|
|
|
</start>
|
2017-05-07 20:36:11 +00:00
|
|
|
<start name="init" caps="1000">
|
2017-06-22 16:47:02 +00:00
|
|
|
<resource name="RAM" quantum="3M"/>
|
2011-12-22 15:19:25 +00:00
|
|
|
<config verbose="yes">
|
|
|
|
<parent-provides>
|
|
|
|
<service name="ROM"/>
|
2017-01-18 16:10:07 +00:00
|
|
|
<service name="CPU"/>
|
|
|
|
<service name="PD"/>
|
2011-12-22 15:19:25 +00:00
|
|
|
<service name="LOG"/>
|
|
|
|
<service name="Timer"/>
|
|
|
|
</parent-provides>
|
2017-05-07 20:36:11 +00:00
|
|
|
<default caps="100"/>
|
2011-12-22 15:19:25 +00:00
|
|
|
<start name="test-timer">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<route> <any-service> <parent/> </any-service> </route>
|
|
|
|
</start>
|
|
|
|
</config>
|
|
|
|
<route>
|
2017-01-18 16:10:07 +00:00
|
|
|
<service name="ROM" label="test-timer"> <child name="tar_rom"/> </service>
|
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
2011-12-22 15:19:25 +00:00
|
|
|
</route>
|
|
|
|
</start>
|
|
|
|
</config>
|
|
|
|
}
|
|
|
|
|
|
|
|
exec sh -c "cd bin; tar cfh archive.tar test-timer"
|
|
|
|
|
2023-05-04 14:18:04 +00:00
|
|
|
build_boot_image [list {*}[build_artifacts] archive.tar]
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2017-05-23 13:05:55 +00:00
|
|
|
append qemu_args "-nographic "
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2017-08-14 06:19:24 +00:00
|
|
|
run_genode_until "--- timer test ---" 20
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
exec rm bin/archive.tar
|