run: skip libc_ffat test for non qemu test runs

Print a warning that the sd respectively hard disc must be prepared manually.

Fixes #783
This commit is contained in:
Alexander Boettcher 2013-06-25 09:49:33 +02:00 committed by Stefan Kalkowski
parent 68ba7a0b57
commit 4925f77dac
1 changed files with 7 additions and 1 deletions

View File

@ -16,6 +16,12 @@ if {[have_spec linux]} {
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
}
#
# Build
#
@ -151,6 +157,6 @@ run_genode_until {.*child exited with exit value 0.*} 60
exec rm -f $disk_image
puts "\ntest succeeded\n"
puts "\nTest succeeded\n"
# vi: set ft=tcl :