mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-18 10:46:25 +00:00
libports: reuse libc_ffat as skeleton for fs tests
In addition, file-system tests will use the AHCI driver instead of the ATAPI driver. This change side-steps certain issues with Qemu's IDE emulation. Fixes #942.
This commit is contained in:
parent
45a4d59e07
commit
2891653f8a
@ -1,178 +1,5 @@
|
||||
#
|
||||
# \brief Test for using the libc_ffat plugin
|
||||
# \author Christian Prochaska
|
||||
# \date 2011-05-27
|
||||
#
|
||||
set mkfs_cmd mkfs.vfat
|
||||
set mkfs_opts "-F32"
|
||||
set filesystem ffat
|
||||
|
||||
set use_sd_card_drv [expr [have_spec omap4] || [have_spec exynos5] || [have_spec pl180]]
|
||||
set use_atapi_drv [have_spec x86]
|
||||
|
||||
if {[catch { exec which mkfs.vfat } ]} {
|
||||
puts stderr "Error: mkfs.vfat not installed, aborting test"; exit }
|
||||
|
||||
if {[have_spec linux]} {
|
||||
puts "Run script does not support this platform"; exit }
|
||||
|
||||
if {[expr [have_spec 64bit] && $use_atapi_drv]} {
|
||||
puts "ATAPI driver does not support 64 bit."; exit 0 }
|
||||
|
||||
if {![is_qemu_available]} {
|
||||
puts "\nPlease setup your native sd or hard drive. Remove this fail stop";
|
||||
puts "check when you have prepared your native environment.\n";
|
||||
exit 0
|
||||
}
|
||||
|
||||
if {[have_spec x86]} {
|
||||
set qemu "qemu-system-i386"
|
||||
if {[have_spec 64bit]} { set qemu "qemu-system-x86_64" }
|
||||
|
||||
set version [exec $qemu --version]
|
||||
set version [regexp -inline {[0-9]+\.[0-9]+\.[0-9]+} $version]
|
||||
|
||||
if {$version >= 1.5} {
|
||||
puts "Atapi driver on Qemu $version known to be not working.";
|
||||
puts "For more details see Genode issue 827 on github";
|
||||
|
||||
puts stderr "Test requires 'fix for issue 827'"
|
||||
exit 0;
|
||||
}
|
||||
}
|
||||
|
||||
#
|
||||
# Build
|
||||
#
|
||||
|
||||
set build_components {
|
||||
core init
|
||||
drivers/timer
|
||||
test/libc_ffat
|
||||
}
|
||||
|
||||
lappend_if [have_spec pci] build_components drivers/pci
|
||||
lappend_if [have_spec acpi] build_components drivers/acpi
|
||||
lappend_if $use_atapi_drv build_components drivers/atapi
|
||||
lappend_if $use_sd_card_drv build_components drivers/sd_card
|
||||
|
||||
build $build_components
|
||||
create_boot_directory
|
||||
|
||||
#
|
||||
# Generate config
|
||||
#
|
||||
|
||||
set config {
|
||||
<config verbose="yes">
|
||||
<parent-provides>
|
||||
<service name="ROM"/>
|
||||
<service name="RAM"/>
|
||||
<service name="IRQ"/>
|
||||
<service name="IO_MEM"/>
|
||||
<service name="IO_PORT"/>
|
||||
<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="timer">
|
||||
<resource name="RAM" quantum="1M"/>
|
||||
<provides> <service name="Timer"/> </provides>
|
||||
</start>
|
||||
<start name="test-libc_ffat">
|
||||
<resource name="RAM" quantum="2M"/>
|
||||
<config>
|
||||
<iterations value="1"/>
|
||||
</config>
|
||||
</start>
|
||||
}
|
||||
|
||||
append_if [have_spec acpi] config {
|
||||
<start name="acpi">
|
||||
<resource name="RAM" quantum="8M"/>
|
||||
<binary name="acpi_drv"/>
|
||||
<provides>
|
||||
<service name="PCI"/>
|
||||
<service name="IRQ" />
|
||||
</provides>
|
||||
<route>
|
||||
<service name="PCI"> <any-child /> </service>
|
||||
<any-service> <parent/> <any-child /> </any-service>
|
||||
</route>
|
||||
</start>}
|
||||
|
||||
append_if [expr ![have_spec acpi] && [have_spec pci]] config {
|
||||
<start name="pci_drv">
|
||||
<resource name="RAM" quantum="5M"/>
|
||||
<provides><service name="PCI"/></provides>
|
||||
</start>}
|
||||
|
||||
append_if $use_atapi_drv config {
|
||||
<start name="atapi_drv">
|
||||
<resource name="RAM" quantum="1M"/>
|
||||
<provides> <service name="Block"/> </provides>
|
||||
<config ata="yes" />
|
||||
</start>
|
||||
}
|
||||
|
||||
append_if $use_sd_card_drv config {
|
||||
<start name="sd_card_drv">
|
||||
<resource name="RAM" quantum="1M" />
|
||||
<provides><service name="Block"/></provides>
|
||||
</start>
|
||||
}
|
||||
|
||||
append config {
|
||||
</config>
|
||||
}
|
||||
|
||||
install_config $config
|
||||
|
||||
#
|
||||
# Boot modules
|
||||
#
|
||||
|
||||
# generic modules
|
||||
set boot_modules {
|
||||
core init timer
|
||||
ld.lib.so libc.lib.so libc_log.lib.so libc_ffat.lib.so
|
||||
test-libc_ffat
|
||||
}
|
||||
|
||||
lappend_if [have_spec pci] boot_modules pci_drv
|
||||
lappend_if [have_spec acpi] boot_modules acpi_drv
|
||||
lappend_if $use_atapi_drv boot_modules atapi_drv
|
||||
lappend_if $use_sd_card_drv boot_modules sd_card_drv
|
||||
|
||||
build_boot_image $boot_modules
|
||||
|
||||
#
|
||||
# Execute test case
|
||||
#
|
||||
|
||||
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.vfat -F32 $disk_image"
|
||||
puts "formating disk image with vfat file system: $cmd"
|
||||
catch { exec sh -c $cmd }
|
||||
|
||||
#
|
||||
# Qemu
|
||||
#
|
||||
append qemu_args " -m 128 -nographic "
|
||||
append_if $use_atapi_drv qemu_args " -hda $disk_image -boot order=d "
|
||||
append_if $use_sd_card_drv qemu_args " -drive file=$disk_image,if=sd,cache=writeback "
|
||||
|
||||
run_genode_until {.*child exited with exit value 0.*} 60
|
||||
|
||||
exec rm -f $disk_image
|
||||
|
||||
puts "\nTest succeeded\n"
|
||||
|
||||
# vi: set ft=tcl :
|
||||
source ${genode_dir}/libports/run/libc_filesystem_test.inc
|
||||
|
216
libports/run/libc_filesystem_test.inc
Normal file
216
libports/run/libc_filesystem_test.inc
Normal file
@ -0,0 +1,216 @@
|
||||
#
|
||||
# \brief Test for using the libc_ffat plugin
|
||||
# \author Christian Prochaska
|
||||
# \date 2011-05-27
|
||||
#
|
||||
|
||||
# use SD on ARM
|
||||
set use_sd_card_drv [expr [have_spec omap4] || [have_spec exynos5] || [have_spec pl180]]
|
||||
|
||||
# use ATAPI on x86 (deprecated)
|
||||
#set use_atapi_drv [have_spec x86]
|
||||
#set use_ahci 0
|
||||
|
||||
# use AHCI on x86
|
||||
set use_ahci [have_spec x86]
|
||||
set use_atapi_drv 0
|
||||
|
||||
|
||||
if {[expr $use_atapi_drv && $use_ahci]} {
|
||||
puts "Usage of atapi and ahci is exclusive - choose one."
|
||||
exit 1
|
||||
}
|
||||
|
||||
if {[catch { exec which $mkfs_cmd } ]} {
|
||||
puts stderr "Error: $mkfs_cmd not installed, aborting test"; exit }
|
||||
|
||||
if {[have_spec linux]} {
|
||||
puts "Run script does not support this platform"; exit }
|
||||
|
||||
if {[expr [have_spec 64bit] && $use_atapi_drv]} {
|
||||
puts "ATAPI driver does not support 64 bit."; exit 0 }
|
||||
|
||||
if {![is_qemu_available]} {
|
||||
puts "\nPlease setup your native sd or hard drive. Remove this fail stop";
|
||||
puts "check when you have prepared your native environment.\n";
|
||||
exit 0
|
||||
}
|
||||
|
||||
if {[have_spec x86]} {
|
||||
set qemu "qemu-system-i386"
|
||||
if {[have_spec 64bit]} { set qemu "qemu-system-x86_64" }
|
||||
|
||||
set version [exec $qemu --version]
|
||||
set version [regexp -inline {[0-9]+\.[0-9]+\.[0-9]+} $version]
|
||||
|
||||
if {$version >= 1.5} {
|
||||
puts "Atapi driver on Qemu $version known to be not working.";
|
||||
puts "For more details see Genode issue 827 on github";
|
||||
|
||||
puts stderr "Test requires 'fix for issue 827'"
|
||||
exit 0;
|
||||
}
|
||||
}
|
||||
|
||||
#
|
||||
# Build
|
||||
#
|
||||
|
||||
set build_components {
|
||||
core init
|
||||
drivers/timer
|
||||
test/libc_block
|
||||
}
|
||||
|
||||
lappend build_components test/libc_$filesystem
|
||||
|
||||
lappend_if [have_spec pci] build_components drivers/pci
|
||||
lappend_if [have_spec acpi] build_components drivers/acpi
|
||||
lappend_if $use_ahci build_components drivers/ahci
|
||||
lappend_if $use_atapi_drv build_components drivers/atapi
|
||||
lappend_if $use_sd_card_drv build_components drivers/sd_card
|
||||
|
||||
build $build_components
|
||||
create_boot_directory
|
||||
|
||||
#
|
||||
# Generate config
|
||||
#
|
||||
|
||||
set config {
|
||||
<config verbose="yes">
|
||||
<parent-provides>
|
||||
<service name="ROM"/>
|
||||
<service name="RAM"/>
|
||||
<service name="IRQ"/>
|
||||
<service name="IO_MEM"/>
|
||||
<service name="IO_PORT"/>
|
||||
<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="timer">
|
||||
<resource name="RAM" quantum="1M"/>
|
||||
<provides> <service name="Timer"/> </provides>
|
||||
</start>}
|
||||
append config "
|
||||
<start name=\"test-libc_$filesystem\">"
|
||||
append config {
|
||||
<resource name="RAM" quantum="8M"/>
|
||||
<config>
|
||||
<iterations value="1"/>
|
||||
</config>
|
||||
</start>
|
||||
}
|
||||
|
||||
append_if [have_spec acpi] config {
|
||||
<start name="acpi">
|
||||
<resource name="RAM" quantum="8M"/>
|
||||
<binary name="acpi_drv"/>
|
||||
<provides>
|
||||
<service name="PCI"/>
|
||||
<service name="IRQ" />
|
||||
</provides>
|
||||
<route>
|
||||
<service name="PCI"> <any-child /> </service>
|
||||
<any-service> <parent/> <any-child /> </any-service>
|
||||
</route>
|
||||
</start>}
|
||||
|
||||
append_if [expr ![have_spec acpi] && [have_spec pci]] config {
|
||||
<start name="pci_drv">
|
||||
<resource name="RAM" quantum="5M"/>
|
||||
<provides><service name="PCI"/></provides>
|
||||
</start>}
|
||||
|
||||
append_if $use_atapi_drv config {
|
||||
<start name="atapi_drv">
|
||||
<resource name="RAM" quantum="1M"/>
|
||||
<provides> <service name="Block"/> </provides>
|
||||
<config ata="yes" />
|
||||
</start>
|
||||
}
|
||||
|
||||
append_if $use_ahci config {
|
||||
<start name="ahci">
|
||||
<binary name="ahci" />
|
||||
<resource name="RAM" quantum="10M" />
|
||||
<provides><service name="Block" /></provides>
|
||||
<route>}
|
||||
|
||||
append_if [expr $use_ahci && [have_spec acpi]] config {
|
||||
<service name="IRQ"><child name="acpi" /></service>}
|
||||
append_if $use_ahci config {
|
||||
<any-service> <parent /> <any-child /></any-service>
|
||||
</route>
|
||||
</start>}
|
||||
|
||||
append_if $use_sd_card_drv config {
|
||||
<start name="sd_card_drv">
|
||||
<resource name="RAM" quantum="1M" />
|
||||
<provides><service name="Block"/></provides>
|
||||
</start>
|
||||
}
|
||||
|
||||
append config {
|
||||
</config>
|
||||
}
|
||||
|
||||
install_config $config
|
||||
|
||||
#
|
||||
# Boot modules
|
||||
#
|
||||
|
||||
# generic modules
|
||||
set boot_modules {
|
||||
core init timer
|
||||
ld.lib.so libc.lib.so libc_log.lib.so libc_block.lib.so
|
||||
}
|
||||
|
||||
append boot_modules test-libc_$filesystem
|
||||
append boot_modules " "
|
||||
append boot_modules libc_$filesystem.lib.so
|
||||
|
||||
lappend_if [have_spec pci] boot_modules pci_drv
|
||||
lappend_if [have_spec acpi] boot_modules acpi_drv
|
||||
lappend_if $use_atapi_drv boot_modules atapi_drv
|
||||
lappend_if $use_ahci boot_modules ahci
|
||||
lappend_if $use_sd_card_drv boot_modules sd_card_drv
|
||||
|
||||
build_boot_image $boot_modules
|
||||
|
||||
#
|
||||
# Execute test case
|
||||
#
|
||||
|
||||
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 }
|
||||
|
||||
#
|
||||
# Qemu
|
||||
#
|
||||
append qemu_args " -m 128 -nographic "
|
||||
append_if $use_atapi_drv qemu_args " -hda $disk_image -boot order=d "
|
||||
append_if $use_ahci qemu_args " -drive id=disk,file=$disk_image,if=none -device ahci,id=ahci -device ide-drive,drive=disk,bus=ahci.0 -boot d"
|
||||
append_if $use_sd_card_drv qemu_args " -drive file=$disk_image,if=sd,cache=writeback "
|
||||
|
||||
run_genode_until {.*child exited with exit value 0.*} 60
|
||||
|
||||
exec rm -f $disk_image
|
||||
|
||||
puts "\nTest succeeded\n"
|
||||
|
||||
# vi: set ft=tcl :
|
Loading…
Reference in New Issue
Block a user