mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 21:57:55 +00:00
f996697fd5
Move FS Node implementations from server/ram_fs to include/ram_fs. Support embedded ram_fs instances in VFS configurations using <ram/>. Add 'no space' handling to VFS symlink ops. Fixes #1635
71 lines
1.1 KiB
Tcl
71 lines
1.1 KiB
Tcl
#
|
|
# \brief Test for using the vfs local ram_fs
|
|
# \author Norman Feske
|
|
# \date 2014-04-10
|
|
#
|
|
# \author Emery Hemingway
|
|
# \date 2015-07-21
|
|
#
|
|
|
|
#
|
|
# Build
|
|
#
|
|
|
|
build { core init test/libc_vfs }
|
|
|
|
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"/>
|
|
</parent-provides>
|
|
<start name="test-libc_vfs">
|
|
<resource name="RAM" quantum="2M"/>
|
|
<route>
|
|
<any-service> <parent/> </any-service>
|
|
</route>
|
|
<config>
|
|
<iterations value="1"/>
|
|
<libc stdout="/dev/log" cwd="/tmp" >
|
|
<vfs>
|
|
<dir name="tmp" >
|
|
<ram/>
|
|
</dir>
|
|
<dir name="dev"> <log/> </dir>
|
|
</vfs>
|
|
</libc>
|
|
</config>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
#
|
|
# Boot modules
|
|
#
|
|
|
|
build_boot_image {
|
|
core init
|
|
ld.lib.so libc.lib.so
|
|
test-libc_vfs
|
|
}
|
|
|
|
#
|
|
# Execute test case
|
|
#
|
|
|
|
append qemu_args " -m 128 -nographic "
|
|
run_genode_until {.*child "test-libc_vfs" exited with exit value 0.*} 60
|
|
|
|
# vi: set ft=tcl :
|