genode/repos/libports/run/libc_vfs_select.run
Norman Feske 3ebb715c5c libports: use [build_artifacts] in run scripts
...except for the run scripts related to Qt and the NIC router.

Issue #4860
2023-09-29 12:17:45 +02:00

84 lines
1.9 KiB
Tcl

build {
core init timer lib/ld lib/libc lib/posix lib/vfs lib/vfs_pipe lib/stdcxx
server/terminal_crosslink server/vfs test/libc_select test/libc_counter
}
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>
<default caps="100"/>
<start name="timer">
<resource name="RAM" quantum="2M"/>
<provides> <service name="Timer"/> </provides>
</start>
<start name="terminal_crosslink">
<resource name="RAM" quantum="1M"/>
<provides> <service name="Terminal"/> </provides>
</start>
<start name="vfs">
<resource name="RAM" quantum="12M"/>
<provides> <service name="File_system"/> </provides>
<config>
<vfs>
<terminal/>
<dir name="pipe"> <pipe/> </dir>
</vfs>
<default-policy root="/" writeable="yes"/>
</config>
</start>
<start name="test-libc_counter-source">
<resource name="RAM" quantum="8M"/>
<config>
<vfs>
<dir name="dev"> <terminal/> <log/> </dir>
</vfs>
<libc stdin="/dev/terminal" stdout="/dev/terminal" stderr="/dev/log"/>
</config>
</start>
<start name="test-libc_select">
<resource name="RAM" quantum="4M"/>
<config>
<arg value="test-libc_select"/>
<arg value="/dev/log"/>
<arg value="/vfs/terminal"/>
<!--
<arg value=":"/>
<arg value="/dev/log"/>
-->
<vfs>
<dir name="dev"> <log/> <null/> <zero/> </dir>
<dir name="vfs"> <fs/> </dir>
</vfs>
<libc stdin="/dev/null" stdout="/dev/log" stderr="/dev/log" pipe="/vfs/pipe"/>
</config>
</start>
</config>
}
build_boot_image [build_artifacts]
append qemu_args " -nographic "
run_genode_until "child \"test-libc_select\" exited with exit value 0.*\n" 120
# vi: set ft=tcl :