diff options
author | Davide Caratti <dcaratti@redhat.com> | 2018-03-02 08:44:39 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-03-04 18:39:03 -0500 |
commit | 79f3a8e662c1ae6e85737eca9ae7d6b52cf87815 (patch) | |
tree | 7a30f076001e98370f26b173e4386a56394a89e4 /tools/testing/selftests/tc-testing | |
parent | 0a8a1bf17e3af34f1f8d2368916a6327f8b3bfd5 (diff) |
tc-testing: skbmod: fix match value of ethertype
iproute2 print_skbmod() prints the configured ethertype using format 0x%X:
therefore, test 9aa8 systematically fails, because it configures action #4
using ethertype 0x0031, and expects 0x0031 when it reads it back. Changing
the expected value to 0x31 lets the test result 'not ok' become 'ok'.
tested with:
# ./tdc.py -e 9aa8
Test 9aa8: Get a single skbmod action from a list
All test results:
1..1
ok 1 9aa8 Get a single skbmod action from a list
Fixes: cf797ac49b94 ("tc-testing: Add test cases for police and skbmod")
Signed-off-by: Davide Caratti <dcaratti@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools/testing/selftests/tc-testing')
-rw-r--r-- | tools/testing/selftests/tc-testing/tc-tests/actions/skbmod.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/tc-testing/tc-tests/actions/skbmod.json b/tools/testing/selftests/tc-testing/tc-tests/actions/skbmod.json index e34075059c26..90bba48c3f07 100644 --- a/tools/testing/selftests/tc-testing/tc-tests/actions/skbmod.json +++ b/tools/testing/selftests/tc-testing/tc-tests/actions/skbmod.json | |||
@@ -315,7 +315,7 @@ | |||
315 | "cmdUnderTest": "$TC actions ls action skbmod", | 315 | "cmdUnderTest": "$TC actions ls action skbmod", |
316 | "expExitCode": "0", | 316 | "expExitCode": "0", |
317 | "verifyCmd": "$TC actions get action skbmod index 4", | 317 | "verifyCmd": "$TC actions get action skbmod index 4", |
318 | "matchPattern": "action order [0-9]*: skbmod pipe set etype 0x0031", | 318 | "matchPattern": "action order [0-9]*: skbmod pipe set etype 0x31", |
319 | "matchCount": "1", | 319 | "matchCount": "1", |
320 | "teardown": [ | 320 | "teardown": [ |
321 | "$TC actions flush action skbmod" | 321 | "$TC actions flush action skbmod" |