diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2020-01-09 11:57:18 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2020-01-09 16:25:36 +0100 |
commit | 74e83bfde6652df2ada831ae003ec51ca8e673c7 (patch) | |
tree | 8150a62ee2c37972dd8f369f63de5f3773617d9e /test/afb-test | |
parent | 439c289056564cc4723c249f2ba29100efc7d4f8 (diff) |
Cleanup examples, tests, configuration and plugins
This commit updates all files external to the code.
Change-Id: I910bc300c53b7669573bba414db7d7ad74313697
Signed-off-by: Arthur Guyader <arthur.guyader@iot.bzh>
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'test/afb-test')
-rw-r--r-- | test/afb-test/fixtures/testValueJ1939_1.canreplay | 2 | ||||
-rw-r--r-- | test/afb-test/fixtures/testj1939.canreplay | 2 | ||||
-rw-r--r-- | test/afb-test/tests/low-can_J1939Test.lua | 4 | ||||
-rw-r--r-- | test/afb-test/tests/low-can_ValueJ1939Test.lua | 4 | ||||
-rw-r--r-- | test/afb-test/tests/low-can_ValueTestCan.lua | 4 |
5 files changed, 8 insertions, 8 deletions
diff --git a/test/afb-test/fixtures/testValueJ1939_1.canreplay b/test/afb-test/fixtures/testValueJ1939_1.canreplay index 4685c39b..d08971e3 100644 --- a/test/afb-test/fixtures/testValueJ1939_1.canreplay +++ b/test/afb-test/fixtures/testValueJ1939_1.canreplay @@ -1 +1 @@ -(1481581765.346271) can2 09FD0202#EC5D0087C2FAFFFF +(1481581765.346271) can0 09FD0202#EC5D0087C2FAFFFF diff --git a/test/afb-test/fixtures/testj1939.canreplay b/test/afb-test/fixtures/testj1939.canreplay index d73ee92c..90b89c9d 100644 --- a/test/afb-test/fixtures/testj1939.canreplay +++ b/test/afb-test/fixtures/testj1939.canreplay @@ -1 +1 @@ -(08255.460200) can2 0CF00203#CD402800043828FF +(08255.460200) can0 0CF00203#CD402800043828FF diff --git a/test/afb-test/tests/low-can_J1939Test.lua b/test/afb-test/tests/low-can_J1939Test.lua index 3e855366..121dbc44 100644 --- a/test/afb-test/tests/low-can_J1939Test.lua +++ b/test/afb-test/tests/low-can_J1939Test.lua @@ -21,9 +21,9 @@ _AFT.setBeforeAll(function() - local can = io.open("/sys/class/net/can2") + local can = io.open("/sys/class/net/can0") if can == nil then - print("# You do not have 'can2' device set. Please run the following command:\n### sudo modprobe vcan; sudo ip link add can2 type vcan; sudo ip link set can2 up ") + print("# You do not have 'can0' device set. Please run the following command:\n### sudo modprobe vcan; sudo ip link add can2 type vcan; sudo ip link set can2 up ") return -1 end return 0 diff --git a/test/afb-test/tests/low-can_ValueJ1939Test.lua b/test/afb-test/tests/low-can_ValueJ1939Test.lua index 7fd6da67..5a4add3e 100644 --- a/test/afb-test/tests/low-can_ValueJ1939Test.lua +++ b/test/afb-test/tests/low-can_ValueJ1939Test.lua @@ -22,9 +22,9 @@ _AFT.setBeforeAll(function() - local can = io.open("/sys/class/net/can2") + local can = io.open("/sys/class/net/can0") if can == nil then - print("# You do not have 'can2' device set. Please run the following command:\n### sudo modprobe vcan; sudo ip link add can2 type vcan; sudo ip link set can2 up ") + print("# You do not have 'can0' device set. Please run the following command:\n### sudo modprobe vcan; sudo ip link add can2 type vcan; sudo ip link set can2 up ") return -1 end return 0 diff --git a/test/afb-test/tests/low-can_ValueTestCan.lua b/test/afb-test/tests/low-can_ValueTestCan.lua index 093ccf95..b717dc02 100644 --- a/test/afb-test/tests/low-can_ValueTestCan.lua +++ b/test/afb-test/tests/low-can_ValueTestCan.lua @@ -22,9 +22,9 @@ _AFT.setBeforeAll(function() - local can = io.open("/sys/class/net/can2") + local can = io.open("/sys/class/net/can0") if can == nil then - print("# You do not have 'can2' device set. Please run the following command:\n### sudo modprobe vcan; sudo ip link add can2 type vcan; sudo ip link set can2 up ") + print("# You do not have 'can0' device set. Please run the following command:\n### sudo modprobe vcan; sudo ip link add can2 type vcan; sudo ip link set can2 up ") return -1 end return 0 |