diff options
author | Zhengchao Shao <[email protected]> | 2022-09-21 10:44:15 +0800 |
---|---|---|
committer | Jakub Kicinski <[email protected]> | 2022-09-22 17:34:13 -0700 |
commit | 1c15eb2a03c679d8188b22dd4f07ae1bfdb9ac1b (patch) | |
tree | e10998590ee742d1c334ecf55da2b34b12b3306a | |
parent | dfbadd7f9945429068f10343eee49d635adad0cd (diff) |
selftests/tc-testing: add show class case for prio qdisc
Test 2410: Show prio class
Signed-off-by: Zhengchao Shao <[email protected]>
Reviewed-by: Victor Nogueira <[email protected]>
Tested-by: Victor Nogueira <[email protected]>
Signed-off-by: Jakub Kicinski <[email protected]>
-rw-r--r-- | tools/testing/selftests/tc-testing/tc-tests/qdiscs/prio.json | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tools/testing/selftests/tc-testing/tc-tests/qdiscs/prio.json b/tools/testing/selftests/tc-testing/tc-tests/qdiscs/prio.json index 3076c02d08d6..8186de2f0dcf 100644 --- a/tools/testing/selftests/tc-testing/tc-tests/qdiscs/prio.json +++ b/tools/testing/selftests/tc-testing/tc-tests/qdiscs/prio.json @@ -272,5 +272,25 @@ "teardown": [ "$IP link del dev $DUMMY type dummy" ] + }, + { + "id": "2410", + "name": "Show prio class", + "category": [ + "qdisc", + "prio" + ], + "setup": [ + "$IP link add dev $DUMMY type dummy || /bin/true" + ], + "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root prio", + "expExitCode": "0", + "verifyCmd": "$TC class show dev $DUMMY", + "matchPattern": "class prio 1:[0-9]+ parent 1:", + "matchCount": "3", + "teardown": [ + "$TC qdisc del dev $DUMMY handle 1: root prio", + "$IP link del dev $DUMMY type dummy" + ] } ] |