diff options
author | khouloud touil <ktouil@baylibre.com> | 2018-07-12 10:36:46 +0200 |
---|---|---|
committer | khouloud touil <ktouil@baylibre.com> | 2018-07-16 17:42:21 +0200 |
commit | f48f8fed096c534b65a428c5c0618261ed1a04af (patch) | |
tree | d128886eebc6bfd2cd5ade7c85e60ff9905a5b49 /common/scripts/test_can_modules.sh | |
parent | d69c057664659f8139781c5e3b548d96228b722f (diff) |
Fix the CAN bus testsguppy_6.90.0guppy/6.90.0flounder_5.99.6flounder_5.99.5flounder_5.99.4flounder_5.99.3flounder_5.99.2flounder/5.99.6flounder/5.99.5flounder/5.99.4flounder/5.99.3flounder/5.99.26.90.05.99.65.99.55.99.45.99.35.99.2
At first to be able to configure the can interfaces, we had to use the libsocketcan,
but this lib should be used with canutils utilities, but a conflict happened between
the canutils and the can-utils, so I had to fix the tests to be able to use only
the can-utils utilities.
This link for a LAVA test job for these tests:
http://lava.baylibre.com:10080/scheduler/job/10883
Change-Id: I7b988496d6977d6d9d82f8f82b58520444dbc7d6
Signed-off-by: khouloud touil <ktouil@baylibre.com>
Diffstat (limited to 'common/scripts/test_can_modules.sh')
-rwxr-xr-x | common/scripts/test_can_modules.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common/scripts/test_can_modules.sh b/common/scripts/test_can_modules.sh index d7966b4..d6caf54 100755 --- a/common/scripts/test_can_modules.sh +++ b/common/scripts/test_can_modules.sh @@ -63,7 +63,7 @@ fi sleep 5 -canconfig can0 bitrate 50000 +ip link set can0 type can bitrate 50000 if [ $? -eq 0 ];then lava-test-case canconfig_can0 --result fail else @@ -72,7 +72,7 @@ fi sleep 3 -canconfig can1 bitrate 50000 +ip link set can1 type can bitrate 50000 if [ $? -eq 0 ];then lava-test-case canconfig_can1 --result fail else @@ -121,7 +121,7 @@ fi sleep 5 -canconfig can0 bitrate 50000 +ip link set can0 type can bitrate 50000 if [ $? -eq 0 ];then lava-test-case canconfig_can0 --result pass else @@ -129,7 +129,7 @@ else fi sleep 3 -canconfig can1 bitrate 50000 +ip link set can1 type can bitrate 50000 if [ $? -eq 0 ];then lava-test-case canconfig_can1 --result pass else |