mirror of
https://github.com/genodelabs/genode.git
synced 2025-02-20 09:46:20 +00:00
Disable network tests on imx53_qsb_tz
This commit is contained in:
parent
68015a6e9d
commit
5657375c9f
@ -4,7 +4,8 @@
|
||||
# \date 2016-06-05
|
||||
#
|
||||
|
||||
if {[have_spec odroid_xu] || [have_spec linux]} {
|
||||
if {[have_spec odroid_xu] || [have_spec linux] ||
|
||||
[expr [have_spec imx53] && [have_spec trustzone]]} {
|
||||
puts "Run script does not support this platform."
|
||||
exit 0
|
||||
}
|
||||
|
@ -23,7 +23,8 @@
|
||||
set use_usb_driver [expr [have_spec omap4] || [have_spec arndale] || [have_spec rpi]]
|
||||
set use_nic_driver [expr !$use_usb_driver && ![have_spec odroid_xu] && ![have_spec linux]]
|
||||
|
||||
if {[expr !$use_usb_driver && !$use_nic_driver]} {
|
||||
if {[expr !$use_usb_driver && !$use_nic_driver] ||
|
||||
[expr [have_spec imx53] && [have_spec trustzone]]} {
|
||||
puts "\n Run script is not supported on this platform. \n"; exit 0 }
|
||||
|
||||
requires_installation_of lynx
|
||||
|
@ -19,18 +19,15 @@ if {[get_cmd_switch --autopilot] && [have_include "power_on/qemu"]} {
|
||||
exit
|
||||
}
|
||||
|
||||
if {[have_spec odroid_xu]} {
|
||||
puts "Run script does not support this platform."
|
||||
exit 0
|
||||
}
|
||||
|
||||
if {![info exists use_usb_driver]} {
|
||||
set use_usb_driver [expr [have_spec omap4] || [have_spec arndale] || [have_spec rpi]]
|
||||
}
|
||||
set use_nic_driver [expr !$use_usb_driver && !$use_wifi_driver]
|
||||
|
||||
if {[expr !$use_usb_driver && !$use_nic_driver && !$use_wifi_driver]} {
|
||||
puts "Run script is not supported on this platform.";
|
||||
if {[expr !$use_usb_driver && !$use_nic_driver && !$use_wifi_driver] ||
|
||||
[have_spec odroid_xu] ||
|
||||
[expr [have_spec imx53] && [have_spec trustzone]]} {
|
||||
puts "Run script is not supported on this platform."
|
||||
exit 0
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,9 @@
|
||||
set use_usb_driver [expr [have_spec omap4] || [have_spec arndale] || [have_spec rpi]]
|
||||
set use_nic_driver [expr !$use_usb_driver && ![have_spec linux] && ![have_spec odroid_xu]]
|
||||
|
||||
if {[expr !$use_usb_driver && !$use_nic_driver || [expr [have_include "power_on/qemu"] && [have_spec zynq]]]} {
|
||||
if {[expr !$use_usb_driver && !$use_nic_driver] ||
|
||||
[expr [have_include "power_on/qemu"] && [have_spec zynq]] ||
|
||||
[expr [have_spec imx53] && [have_spec trustzone]]} {
|
||||
puts "\n Run script is not supported on this platform. \n"; exit 0 }
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user