diff options
author | Khouloud Touil <ktouil@baylibre.com> | 2019-10-11 12:50:11 +0200 |
---|---|---|
committer | Khouloud Touil <ktouil@baylibre.com> | 2019-10-15 09:43:21 +0200 |
commit | c532114e01614de3885686e849c59746003bfacf (patch) | |
tree | 1eb94ca9a9e0c8f379ce8ca33d968ac500005ab6 /common/scripts | |
parent | 4b263fd3625dbb9a2f30c77bbd8e49bde0bca967 (diff) |
qa-testdefinitions: Split can tests to avoid failures
Split the can tests in two, one for basic tests that doesn't need the
two can interfaces to be related, and the other one is for a board with
two related interfaces.
Modify the test_can_modules to be run on a board with only one can if at
least.
AGL-bug: SPEC-2878
Change-Id: I6f761458c3e191aa8000d19cb05b0592566cb6c9
Signed-off-by: Khouloud Touil <ktouil@baylibre.com>
Diffstat (limited to 'common/scripts')
-rwxr-xr-x | common/scripts/test_can_modules.sh | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/common/scripts/test_can_modules.sh b/common/scripts/test_can_modules.sh index 12e82ee..6fe4b02 100755 --- a/common/scripts/test_can_modules.sh +++ b/common/scripts/test_can_modules.sh @@ -8,13 +8,11 @@ if [ ! -e /sys/class/net/can1 ];then lava-test-case unload_c_can_module --result skipp lava-test-case unload_can_dev_module --result skip lava-test-case canconfig_can0 --result skip - lava-test-case canconfig_can1 --result skip lava-test-case load_can_module --result skip lava-test-case load_can_raw_module --result skip lava-test-case load_c_can_module --result skip lava-test-case load_can_dev_module --result skip lava-test-case canconfig_can0 --result skip - lava-test-case canconfig_can1 --result skip exit 0 fi lsmod | grep can @@ -70,14 +68,6 @@ else lava-test-case canconfig_can0 --result pass fi -sleep 3 - -ip link set can1 type can bitrate 50000 -if [ $? -eq 0 ];then - lava-test-case canconfig_can1 --result fail -else - lava-test-case canconfig_can1 --result pass -fi sleep 5 @@ -124,7 +114,6 @@ sleep 5 #Make sure always that the can interface is down before #starting the config step. ip link set can0 down -ip link set can1 down ip link set can0 type can bitrate 50000 if [ $? -eq 0 ];then @@ -134,11 +123,3 @@ else fi sleep 3 -ip link set can1 type can bitrate 50000 -if [ $? -eq 0 ];then - lava-test-case canconfig_can1 --result pass -else - lava-test-case canconfig_can1 --result fail -fi - -sleep 3 |