diff options
| author | Baowen Zheng <baowen.zheng@corigine.com> | 2021-12-17 19:16:29 +0100 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2021-12-19 14:08:48 +0000 |
| commit | eb473bac4a4b28eafb104e35410de3bc111b2e08 (patch) | |
| tree | 6dc9fd06f0f2033e92a05208d69c72f35e2abbb5 /tools/testing/selftests/tc-testing/tc-tests/actions | |
| parent | c86e0209dc7725c91583e3c0c78c3da6a28daeb4 (diff) | |
| download | lwn-eb473bac4a4b28eafb104e35410de3bc111b2e08.tar.gz lwn-eb473bac4a4b28eafb104e35410de3bc111b2e08.zip | |
selftests: tc-testing: add action offload selftest for action and filter
Add selftest cases in action police with skip_hw.
Add selftest case to validate flags of filter and action.
These tests depend on corresponding iproute2 command support.
Signed-off-by: Baowen Zheng <baowen.zheng@corigine.com>
Signed-off-by: Simon Horman <simon.horman@corigine.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools/testing/selftests/tc-testing/tc-tests/actions')
| -rw-r--r-- | tools/testing/selftests/tc-testing/tc-tests/actions/police.json | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/testing/selftests/tc-testing/tc-tests/actions/police.json b/tools/testing/selftests/tc-testing/tc-tests/actions/police.json index 8e45792703ed..b7205a069534 100644 --- a/tools/testing/selftests/tc-testing/tc-tests/actions/police.json +++ b/tools/testing/selftests/tc-testing/tc-tests/actions/police.json @@ -812,5 +812,29 @@ "teardown": [ "$TC actions flush action police" ] + }, + { + "id": "7d64", + "name": "Add police action with skip_hw option", + "category": [ + "actions", + "police" + ], + "setup": [ + [ + "$TC actions flush action police", + 0, + 1, + 255 + ] + ], + "cmdUnderTest": "$TC actions add action police rate 1kbit burst 10k index 100 skip_hw", + "expExitCode": "0", + "verifyCmd": "$TC actions ls action police | grep skip_hw", + "matchPattern": "skip_hw", + "matchCount": "1", + "teardown": [ + "$TC actions flush action police" + ] } ] |
