Disable unsupported autopilot tests on rpi3

This commit is contained in:
Christian Helmuth 2019-06-24 11:03:34 +02:00
parent a0c71cffd4
commit 63e69d35e0
10 changed files with 18 additions and 7 deletions

View File

@ -1,6 +1,6 @@
create_boot_directory
if {[have_spec linux] || [have_spec imx7d_sabre] ||
if {[have_spec linux] || [have_spec imx7d_sabre] || [have_spec rpi3] ||
[expr [have_spec imx53] && [have_spec trustzone]]} {
puts "Run script does not support this platform."
exit 0

View File

@ -4,7 +4,7 @@
# \date 2016-06-05
#
if {[have_spec linux] || [have_spec imx7d_sabre] ||
if {[have_spec linux] || [have_spec imx7d_sabre] || [have_spec rpi3] ||
[expr [have_spec imx53] && [have_spec trustzone]]} {
puts "Run script does not support this platform."
exit 0

View File

@ -9,14 +9,14 @@ if {[have_spec odroid_xu] || [have_spec zynq]} {
exit 0
}
# use SD on ARM
set use_sd_card_drv [expr [have_spec pbxa9]]
# use SD on Qemu/pbxa9
set use_sd_card_drv [expr [have_include "power_on/qemu"] && [have_spec pbxa9]]
# use AHCI on x86
set use_ahci [expr [have_spec x86] && ![have_spec linux]]
# use ram_block on Linux
set use_ram_block [have_spec linux]
# use ram_block on Linux and Qemu/rpi3
set use_ram_block [expr [have_spec linux] || [expr [have_include "power_on/qemu"] && [have_spec rpi3]]]
if {[catch { exec which $mkfs_cmd } ]} {
puts stderr "Error: $mkfs_cmd not installed, aborting test"; exit }

View File

@ -23,6 +23,7 @@
if {[expr [have_spec linux]] ||
[expr [have_spec imx53] && [have_spec trustzone]] ||
[expr [have_spec imx7d_sabre]] ||
[have_spec rpi3] ||
[expr [have_spec riscv]]} {
puts "\n Run script is not supported on this platform. \n"; exit 0 }

View File

@ -3,6 +3,11 @@ if {![have_include power_on/qemu]} {
exit 0
}
if {[have_spec rpi3]} {
puts "\n Run script is not supported on this platform. \n";
exit 0
}
create_boot_directory
import_from_depot [depot_user]/src/[base_src] \

View File

@ -1,6 +1,7 @@
if {[have_spec odroid_xu] ||
[have_spec imx7d_sabre] ||
[have_spec imx6q_sabrelite] ||
[have_spec rpi3] ||
[have_spec zynq] ||
[have_spec imx53] && [have_spec foc]} {
puts "\n Run script is not supported on this platform. \n";

View File

@ -1,4 +1,5 @@
if {[have_spec foc] || [have_spec odroid_xu] || [have_spec linux] || [have_spec imx7d_sabre] ||
if {[have_spec foc] || [have_spec odroid_xu] || [have_spec linux] ||
[have_spec imx7d_sabre] || [have_spec rpi3] ||
[expr [have_spec imx53] && [have_spec trustzone]]} {
puts "Run script is not supported on this platform."
exit 0

View File

@ -1,5 +1,6 @@
if {![have_include power_on/qemu] ||
[have_spec foc] ||
[have_spec rpi3] ||
[expr [have_spec imx53] && [have_spec trustzone]]} {
puts "Run script is not supported on this platform."

View File

@ -1,4 +1,5 @@
if {[have_spec foc] || [have_spec linux] || [have_spec imx7d_sabre] ||
[have_spec rpi3] ||
[expr [have_spec imx53] && [have_spec trustzone]]} {
puts "Run script is not supported on this platform."
exit 0

View File

@ -1,4 +1,5 @@
if {[have_spec foc] || [have_spec odroid_xu] || [have_spec linux] || [have_spec imx7d_sabre] ||
[have_spec rpi3] ||
[expr [have_spec imx53] && [have_spec trustzone]]} {
puts "Run script is not supported on this platform."
exit 0