From d69c057664659f8139781c5e3b548d96228b722f Mon Sep 17 00:00:00 2001 From: khouloud touil Date: Fri, 22 Jun 2018 14:26:49 +0200 Subject: CAN bus tests This commit for testing CAN modules, sending and receiving frames, showing stats and and testing suitable bitrates for transmission. The "test_can_loopback_mode" test can be run on a board with one interface. This test will fail gracfully if the board dosen't have any CAN interface. The other tests needs to be run on a board with two CAN interfaces (e.g. dra7 with external transceiver.) These tests requires two interfaces on the same board to send frames with the first interface and to receive them with the other one These tests will fail gracfully by skiping all test cases if the board doesn't have two interfaces. This link for the DRA7xx-EVM job : http://lava.baylibre.com:10080/scheduler/job/2860 This link for the AM335X-BONEBLACK (no CAN interface) : http://lava.baylibre.com:10080/scheduler/job/2862 Change-Id: I7d4c69f7817adbea8281d264cbbb7fa55571584e Signed-off-by: khouloud touil --- test-suites/short-smoke/test_can.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 test-suites/short-smoke/test_can.yaml (limited to 'test-suites') diff --git a/test-suites/short-smoke/test_can.yaml b/test-suites/short-smoke/test_can.yaml new file mode 100644 index 0000000..a55eaab --- /dev/null +++ b/test-suites/short-smoke/test_can.yaml @@ -0,0 +1,26 @@ +# these tests are applicable if and only if the board to be used has two CAN interfaces + +metadata: + name: my_can_test + format: "Lava-Test-Shell Test Definition 1.0" + description: "my_can_test" + version: 1.0 + +run: + steps: + - echo "CAN_tests" + - lava-test-set start test_can_loopback_mode + - ./common/scripts/test_can_loopback_mode.sh + - lava-test-set stop + - lava-test-set start test_can_send_receive + - ./common/scripts/test_can_send_receive.sh + - lava-test-set stop + - lava-test-set start test_stats + - ./common/scripts/test_stats.sh + - lava-test-set stop + - lava-test-set start test_can_modules + - ./common/scripts/test_can_modules.sh + - lava-test-set stop + - lava-test-set start test_can_bitrate + - ./comon/scripts/test_can_bitrate.sh + - lava-test-set stop -- cgit 1.2.3-korg