genode/repos/base-linux/run/lx_fs.run
Norman Feske f119d9ee8b base: use [build_artifacts] in run scripts
The patch also removes a few legacies along the way, unifies the coding
style, and cuts back superfluous comments.

Issue #4860
2023-05-30 12:03:26 +02:00

81 lines
1.4 KiB
Tcl

#
# \brief Test for using the libc_vfs plugin with the Linux file system
# \author Norman Feske
# \author Christian Helmuth
# \date 2013-11-07
#
assert_spec linux
#
# Build
#
build { core init lib/ld lib/libc lib/vfs server/lx_fs test/libc_vfs }
create_boot_directory
#
# Generate config
#
install_config {
<config>
<parent-provides>
<service name="ROM"/>
<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>
<default caps="100"/>
<start name="lx_fs" caps="200" ld="no">
<resource name="RAM" quantum="4M"/>
<provides> <service name="File_system"/> </provides>
<config> <policy label_prefix="test-libc_vfs" root="/libc_vfs" writeable="yes" /> </config>
</start>
<start name="test-libc_vfs">
<resource name="RAM" quantum="4M"/>
<config>
<vfs>
<fs />
<dir name="dev"> <log/> </dir>
</vfs>
<libc stdout="/dev/log"/>
</config>
</start>
</config>
}
#
# Create test-directory structure and ensure it is empty
#
exec rm -rf bin/libc_vfs
exec mkdir -p bin/libc_vfs
#
# Boot modules
#
build_boot_image [list {*}[build_artifacts] libc_vfs]
#
# Execute test case
#
run_genode_until {child "test-libc_vfs" exited with exit value 0.*\n} 20
puts "\nTest succeeded\n"
#
# Cleanup test-directory structure
#
exec rm -r bin/libc_vfs
# vi: set ft=tcl :