mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-28 09:38:53 +00:00
38b2a3dbb4
This enables us to use the run scripts applied to a native machine equipped with Intel's AMT. If the environment variables are correctly set up, the remote test machine is reseted via 'amttool', then via 'amtterm' the serial output is collected and the normal run script matching pattern for success/failure of the run script are applied. 'amttool' and 'amtterm' are part of the package called 'amtterm' shipped with the Linux distributions like Ubuntu, Debian and lot more. Following environment variables are required, to run the run scripts with a native AMT test machine: PXE_TFTP_DIR_BASE - absolute path of TFTP directory PXE_TFTP_DIR_OFFSET - relative path to PXE_TFTP_DIR_BASE where the config file will be generated - named 'config-00-00-00-00-00-00' AMT_TEST_MACHINE_IP - TCP/IP address of target AMT test machine AMT_TEST_MACHINE_PWD - password of target AMT test machine Issue #679
161 lines
4.3 KiB
Plaintext
161 lines
4.3 KiB
Plaintext
#
|
|
# \brief NOVA-specific test-environment supplements
|
|
# \author Norman Feske
|
|
# \date 2010-08-31
|
|
#
|
|
# This file is meant to be used as '--include' argument for 'tool/run'.
|
|
#
|
|
|
|
##
|
|
# Install files needed to boot via PXE
|
|
#
|
|
proc install_pxe_bootloader_to_run_dir { } {
|
|
exec cp [genode_dir]/tool/boot/pulsar [run_dir]/boot/pulsar
|
|
exec cp [genode_dir]/tool/boot/bender [run_dir]/boot/bender
|
|
}
|
|
|
|
##
|
|
# Read the location of the NOVA kernel directory from 'etc/nova.conf'
|
|
#
|
|
proc nova_kernel { } {
|
|
global _nova_kernel
|
|
|
|
if {![info exists _nova_kernel]} {
|
|
if {[file exists etc/nova.conf]} {
|
|
set _nova_kernel [exec sed -n "/^NOVA_KERNEL/s/^.*=\\s*//p" etc/nova.conf]
|
|
} else {
|
|
set _nova_kernel "[pwd]/kernel/hypervisor"
|
|
}
|
|
}
|
|
return $_nova_kernel
|
|
}
|
|
|
|
##
|
|
# Return whether nova is provided from the outside
|
|
#
|
|
proc nova_external { } {
|
|
if {[nova_kernel] == "[pwd]/kernel/hypervisor"} { return 0 }
|
|
return 1
|
|
}
|
|
|
|
##################################
|
|
## Test framework API functions ##
|
|
##################################
|
|
|
|
proc create_boot_directory { } {
|
|
exec rm -rf [run_dir]
|
|
exec mkdir -p [run_dir]/genode
|
|
}
|
|
|
|
|
|
proc build_boot_image {binaries} {
|
|
|
|
#
|
|
# Collect contents of the ISO image
|
|
#
|
|
copy_and_strip_genode_binaries_to_run_dir $binaries
|
|
|
|
if {![nova_external] && ![file exists [nova_kernel]]} { build { kernel } }
|
|
|
|
puts "using NOVA kernel at [nova_kernel]"
|
|
exec objcopy -O elf32-i386 [nova_kernel] [run_dir]/hypervisor
|
|
|
|
install_iso_bootloader_to_run_dir
|
|
|
|
#
|
|
# The core binary is part of the 'binaries' list but it must
|
|
# appear right after 'sigma0' as boot module. Hence the special case.
|
|
#
|
|
# Generate grub config file
|
|
#
|
|
set fh [open "[run_dir]/boot/grub/menu.lst" "WRONLY CREAT TRUNC"]
|
|
puts $fh "timeout 0"
|
|
puts $fh "default 0"
|
|
puts $fh "\ntitle Genode on NOVA"
|
|
puts $fh " kernel /boot/bender"
|
|
puts $fh " module /hypervisor iommu serial"
|
|
puts $fh " module /genode/core"
|
|
puts $fh " module /genode/config"
|
|
foreach binary $binaries {
|
|
if {$binary != "core"} {
|
|
puts $fh " module /genode/$binary" } }
|
|
close $fh
|
|
|
|
install_pxe_bootloader_to_run_dir
|
|
create_iso_image_from_run_dir
|
|
|
|
#
|
|
# Generate pulsar config file
|
|
#
|
|
set fh [open "[run_dir]/config-52-54-00-12-34-56" "WRONLY CREAT TRUNC"]
|
|
puts $fh " exec /boot/bender"
|
|
puts $fh " load /hypervisor iommu serial"
|
|
puts $fh " load /genode/core"
|
|
puts $fh " load /genode/config"
|
|
foreach binary $binaries {
|
|
if {$binary != "core"} {
|
|
puts $fh " load /genode/$binary" } }
|
|
close $fh
|
|
|
|
#
|
|
# Generate pulsar config file pointing to the config file above.
|
|
#
|
|
if {[info exists ::env(PXE_TFTP_DIR_BASE)] && [info exists ::env(PXE_TFTP_DIR_OFFSET)]} {
|
|
set len [string length $::env(PXE_TFTP_DIR_BASE)]
|
|
set tmp [string range [pwd] 0 $len-1]
|
|
# if PXE_TFTP_DIR_BASE is part of pwd (autopilot) we don't need DIR_OFFSET
|
|
if ([string match $tmp $::env(PXE_TFTP_DIR_BASE)]) {
|
|
set tftp_local_offset [string range [pwd] $len [string length [pwd]]]
|
|
} else {
|
|
set tftp_local_offset $::env(PXE_TFTP_DIR_OFFSET)
|
|
}
|
|
|
|
set fh [open "$::env(PXE_TFTP_DIR_BASE)$::env(PXE_TFTP_DIR_OFFSET)/config-00-00-00-00-00-00" "WRONLY CREAT TRUNC"]
|
|
puts $fh " root $tftp_local_offset/[run_dir]"
|
|
puts $fh " config config-52-54-00-12-34-56"
|
|
close $fh
|
|
}
|
|
}
|
|
|
|
|
|
proc run_genode_until {{wait_for_re forever} {timeout_value 0}} {
|
|
# run qemu if no AMT information are found
|
|
if {![info exists ::env(AMT_TEST_MACHINE_IP)] ||
|
|
![info exists ::env(AMT_TEST_MACHINE_PWD)] } {
|
|
spawn_qemu $wait_for_re $timeout_value;
|
|
return
|
|
}
|
|
|
|
#
|
|
# amttool expects in the environment variable AMT_PASSWORD the password
|
|
#
|
|
set ::env(AMT_PASSWORD) $::env(AMT_TEST_MACHINE_PWD)
|
|
|
|
#
|
|
# reset the box
|
|
#
|
|
spawn amttool $::env(AMT_TEST_MACHINE_IP) reset
|
|
set timeout 10
|
|
expect {
|
|
"host" { send "y\r" }
|
|
eof { puts stderr "Error: amttool died unexpectedly"; exit -4 }
|
|
timeout { puts stderr "Error: amttool timed out"; exit -5 }
|
|
}
|
|
sleep 5
|
|
|
|
#
|
|
# grab output
|
|
#
|
|
set amtterm "amtterm -u admin -p $::env(AMT_TEST_MACHINE_PWD) -v $::env(AMT_TEST_MACHINE_IP)"
|
|
set timeout [expr $timeout_value + 30]
|
|
set pid [eval "spawn $amtterm"]
|
|
if {$wait_for_re == "forever"} { interact $pid }
|
|
expect {
|
|
-re $wait_for_re { }
|
|
eof { puts stderr "Error: amtterm died unexpectedly"; exit -3 }
|
|
timeout { puts stderr "Error: Test execution timed out"; exit -2 }
|
|
}
|
|
global output
|
|
set output $expect_out(buffer)
|
|
}
|