mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
f119d9ee8b
The patch also removes a few legacies along the way, unifies the coding style, and cuts back superfluous comments. Issue #4860
81 lines
1.4 KiB
Tcl
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 :
|