# # \brief Test for block-backed file-systems in the libc VFS # \author Christian Prochaska # \author Emery Hemingway # \date 2017-07-31 # # # \arg mkfs_cmd # \arg mkfs_opts # \arg use_vfs_server # \arg test_build_components # \arg test_vfs_config # if {[catch { exec which $mkfs_cmd } ]} { puts stderr "Error: $mkfs_cmd not installed, aborting test"; exit } if {[expr ![have_include "power_on/qemu"] && ![have_spec linux]]} { puts "Run script does not support this platform." exit 0 } # # Build # set build_components { test/libc_vfs lib/libc lib/vfs test/libc_vfs } lappend build_components {*}$test_build_components build $build_components create_boot_directory set depot_pkgs " [depot_user]/src/[base_src] [depot_user]/src/init [depot_user]/src/vfs_block [depot_user]/src/vfs_import " lappend_if $use_vfs_server depot_pkgs [depot_user]/src/vfs import_from_depot {*}$depot_pkgs # # Generate config # set config { } append_if [have_include "power_on/qemu"] config { } append config { } if {$use_vfs_server} { append config "" } else { append config $test_vfs_config } append config { } append_if $use_vfs_server config " } $test_vfs_config " append config { } install_config $config # # Prepare hard-disk image for test (used in RAM) # set disk_image "bin/test.hda" set cmd "dd if=/dev/zero of=$disk_image bs=1024 count=65536" puts "creating disk image: $cmd" catch { exec sh -c $cmd } set cmd "$mkfs_cmd $mkfs_opts $disk_image" puts "formating disk: $cmd" catch { exec sh -c $cmd } # # Boot modules # build_boot_image [list {*}[build_artifacts] test.hda] # # Qemu # append qemu_args " -nographic " run_genode_until ".*child \"test-libc_vfs\" exited with exit value 0.*" 90 exec rm -f $disk_image # vi: set ft=tcl :