2013-11-08 15:44:44 +00:00
|
|
|
#
|
2014-04-14 09:57:22 +00:00
|
|
|
# \brief Test for using the libc_vfs plugin with the Linux file system
|
2013-11-08 15:44:44 +00:00
|
|
|
# \author Norman Feske
|
|
|
|
# \author Christian Helmuth
|
|
|
|
# \date 2013-11-07
|
|
|
|
#
|
|
|
|
|
|
|
|
assert_spec linux
|
|
|
|
|
|
|
|
#
|
|
|
|
# Build
|
|
|
|
#
|
|
|
|
|
2014-04-14 09:57:22 +00:00
|
|
|
build { core init server/lx_fs test/libc_vfs }
|
2013-11-08 15:44:44 +00:00
|
|
|
|
|
|
|
create_boot_directory
|
|
|
|
|
|
|
|
#
|
|
|
|
# Generate config
|
|
|
|
#
|
|
|
|
|
|
|
|
install_config {
|
|
|
|
<config>
|
|
|
|
<parent-provides>
|
|
|
|
<service name="ROM"/>
|
|
|
|
<service name="RAM"/>
|
|
|
|
<service name="CAP"/>
|
|
|
|
<service name="PD"/>
|
|
|
|
<service name="RM"/>
|
|
|
|
<service name="CPU"/>
|
|
|
|
<service name="LOG"/>
|
|
|
|
<service name="SIGNAL"/>
|
|
|
|
</parent-provides>
|
|
|
|
<default-route>
|
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
|
|
</default-route>
|
|
|
|
<start name="lx_fs">
|
|
|
|
<resource name="RAM" quantum="4M"/>
|
|
|
|
<provides> <service name="File_system"/> </provides>
|
2014-04-14 09:57:22 +00:00
|
|
|
<config> <policy label="" root="/libc_vfs" writeable="yes" /> </config>
|
2013-11-08 15:44:44 +00:00
|
|
|
</start>
|
2014-04-14 09:57:22 +00:00
|
|
|
<start name="test-libc_vfs">
|
2013-11-08 15:44:44 +00:00
|
|
|
<resource name="RAM" quantum="2M"/>
|
2014-04-14 09:57:22 +00:00
|
|
|
<config>
|
|
|
|
<libc stdout="/dev/log">
|
|
|
|
<vfs>
|
|
|
|
<fs />
|
|
|
|
<dir name="dev"> <log/> </dir>
|
|
|
|
</vfs>
|
|
|
|
</libc>
|
|
|
|
</config>
|
2013-11-08 15:44:44 +00:00
|
|
|
</start>
|
|
|
|
</config>
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Create test-directory structure
|
|
|
|
#
|
|
|
|
|
2014-04-14 09:57:22 +00:00
|
|
|
exec mkdir -p bin/libc_vfs
|
2013-11-08 15:44:44 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Boot modules
|
|
|
|
#
|
|
|
|
|
|
|
|
build_boot_image {
|
2014-04-14 09:57:22 +00:00
|
|
|
core init ld.lib.so libc.lib.so lx_fs test-libc_vfs
|
|
|
|
libc_vfs
|
2013-11-08 15:44:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Execute test case
|
|
|
|
#
|
|
|
|
|
|
|
|
run_genode_until {.*child exited with exit value 0.*} 60
|
|
|
|
|
2014-04-25 11:17:41 +00:00
|
|
|
puts "\nTest succeeded\n"
|
2013-11-08 15:44:44 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Cleanup test-directory structure
|
|
|
|
#
|
|
|
|
|
2014-04-14 09:57:22 +00:00
|
|
|
exec rm -r bin/libc_vfs
|
2013-11-08 15:44:44 +00:00
|
|
|
|
|
|
|
# vi: set ft=tcl :
|