Linux Kernel Selftest development
 help / color / mirror / Atom feed
From: shaozhengchao <shaozhengchao@huawei.com>
To: Victor Nogueira <victor@mojatatu.com>
Cc: <netdev@vger.kernel.org>, <cake@lists.bufferbloat.net>,
	<linux-kselftest@vger.kernel.org>, <jhs@mojatatu.com>,
	<xiyou.wangcong@gmail.com>, <jiri@resnulli.us>,
	<davem@davemloft.net>, <edumazet@google.com>, <kuba@kernel.org>,
	<pabeni@redhat.com>, <toke@toke.dk>, <vinicius.gomes@intel.com>,
	<stephen@networkplumber.org>, <shuah@kernel.org>,
	<zhijianx.li@intel.com>, <weiyongjun1@huawei.com>,
	<yuehaibing@huawei.com>
Subject: Re: [PATCH net-next 03/18] selftests/tc-testings: add selftests for cake qdisc
Date: Sat, 17 Sep 2022 09:48:34 +0800	[thread overview]
Message-ID: <2bcd7b7d-c6d5-e123-0d3c-07f6b9274e88@huawei.com> (raw)
In-Reply-To: <CA+NMeC935wcGnHGQ=-PmSuLjUOx+r5g2LVJ5-8t-8o_V5hjrNQ@mail.gmail.com>



On 2022/9/17 4:32, Victor Nogueira wrote:
> On Fri, Sep 16, 2022 at 12:04 AM Zhengchao Shao
> <shaozhengchao@huawei.com> wrote:
>>
>> Test 1212: Create CAKE with default setting
>> Test 3241: Create CAKE with bandwidth limit
>> Test c940: Create CAKE with autorate-ingress flag
>> Test 2310: Create CAKE with rtt time
>> Test 2385: Create CAKE with besteffort flag
>> Test a032: Create CAKE with diffserv8 flag
>> Test 2349: Create CAKE with diffserv4 flag
>> Test 8472: Create CAKE with flowblind flag
>> Test 2341: Create CAKE with dsthost and nat flag
>> Test 5134: Create CAKE with wash flag
>> Test 2302: Create CAKE with flowblind and no-split-gso flag
>> Test 0768: Create CAKE with dual-srchost and ack-filter flag
>> Test 0238: Create CAKE with dual-dsthost and ack-filter-aggressive flag
>> Test 6573: Create CAKE with memlimit and ptm flag
>> Test 2436: Create CAKE with fwmark and atm flag
>> Test 3984: Create CAKE with overhead and mpu
>> Test 2342: Create CAKE with conservative and ingress flag
>> Test 2313: Change CAKE with mpu
>> Test 4365: Show CAKE class
>>
>> Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com>
>> ---
>>   .../tc-testing/tc-tests/qdiscs/cake.json      | 488 ++++++++++++++++++
>>   1 file changed, 488 insertions(+)
>>   create mode 100644 tools/testing/selftests/tc-testing/tc-tests/qdiscs/cake.json
>>
>> diff --git a/tools/testing/selftests/tc-testing/tc-tests/qdiscs/cake.json b/tools/testing/selftests/tc-testing/tc-tests/qdiscs/cake.json
>> new file mode 100644
>> index 000000000000..11ca18bab721
>> --- /dev/null
>> +++ b/tools/testing/selftests/tc-testing/tc-tests/qdiscs/cake.json
>> @@ -0,0 +1,488 @@
>> +[
>> +    {
>> +        "id": "1212",
>> +        "name": "Create CAKE with default setting",
>> +        "category": [
>> +            "qdisc",
>> +            "cake"
>> +        ],
>> +        "plugins": {
>> +            "requires": "nsPlugin"
>> +        },
>> +        "setup": [
>> +            "$IP link add dev $DUMMY type dummy || /bin/true"
>> +        ],
>> +        "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root cake",
>> +        "expExitCode": "0",
>> +        "verifyCmd": "$TC qdisc show dev $DUMMY",
>> +        "matchPattern": "qdisc cake 1: root refcnt [0-9]+ bandwidth unlimited diffserv3 triple-isolate nonat nowash no-ack-filter split-gso rtt 100ms raw overhead",
>> +        "matchCount": "1",
>> +        "teardown": [
>> +            "$TC qdisc del dev $DUMMY handle 1: root",
>> +            "$IP link del dev $DUMMY type dummy"
>> +        ]
>> +    },
>> +    {
>> +        "id": "3241",
>> +        "name": "Create CAKE with bandwidth limit",
>> +        "category": [
>> +            "qdisc",
>> +            "cake"
>> +        ],
>> +        "plugins": {
>> +            "requires": "nsPlugin"
>> +        },
>> +        "setup": [
>> +            "$IP link add dev $DUMMY type dummy || /bin/true"
>> +        ],
>> +        "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root cake bandwidth 1000",
>> +        "expExitCode": "0",
>> +        "verifyCmd": "$TC qdisc show dev $DUMMY",
>> +        "matchPattern": "qdisc cake 1: root refcnt [0-9]+ bandwidth 1Kbit diffserv3 triple-isolate nonat nowash no-ack-filter split-gso rtt 100ms raw overhead",
>> +        "matchCount": "1",
>> +        "teardown": [
>> +            "$TC qdisc del dev $DUMMY handle 1: root",
>> +            "$IP link del dev $DUMMY type dummy"
>> +        ]
>> +    },
>> +    {
>> +        "id": "c940",
>> +        "name": "Create CAKE with autorate-ingress flag",
>> +        "category": [
>> +            "qdisc",
>> +            "cake"
>> +        ],
>> +        "plugins": {
>> +            "requires": "nsPlugin"
>> +        },
>> +        "setup": [
>> +            "$IP link add dev $DUMMY type dummy || /bin/true"
>> +        ],
>> +        "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root cake autorate-ingress",
>> +        "expExitCode": "0",
>> +        "verifyCmd": "$TC qdisc show dev $DUMMY",
>> +        "matchPattern": "qdisc cake 1: root refcnt [0-9]+ bandwidth unlimited autorate-ingress diffserv3 triple-isolate nonat nowash no-ack-filter split-gso rtt 100ms raw overhead",
>> +        "matchCount": "1",
>> +        "teardown": [
>> +            "$TC qdisc del dev $DUMMY handle 1: root",
>> +            "$IP link del dev $DUMMY type dummy"
>> +        ]
>> +    },
>> +    {
>> +        "id": "2310",
>> +        "name": "Create CAKE with rtt time",
>> +        "category": [
>> +            "qdisc",
>> +            "cake"
>> +        ],
>> +        "plugins": {
>> +            "requires": "nsPlugin"
>> +        },
>> +        "setup": [
>> +            "$IP link add dev $DUMMY type dummy || /bin/true"
>> +        ],
>> +        "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root cake rtt 200",
>> +        "expExitCode": "0",
>> +        "verifyCmd": "$TC qdisc show dev $DUMMY",
>> +        "matchPattern": "qdisc cake 1: root refcnt [0-9]+ bandwidth unlimited diffserv3 triple-isolate nonat nowash no-ack-filter split-gso rtt 200us raw overhead",
>> +        "matchCount": "1",
>> +        "teardown": [
>> +            "$TC qdisc del dev $DUMMY handle 1: root",
>> +            "$IP link del dev $DUMMY type dummy"
>> +        ]
>> +    },
>> +    {
>> +        "id": "2385",
>> +        "name": "Create CAKE with besteffort flag",
>> +        "category": [
>> +            "qdisc",
>> +            "cake"
>> +        ],
>> +        "plugins": {
>> +            "requires": "nsPlugin"
>> +        },
>> +        "setup": [
>> +            "$IP link add dev $DUMMY type dummy || /bin/true"
>> +        ],
>> +        "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root cake besteffort",
>> +        "expExitCode": "0",
>> +        "verifyCmd": "$TC qdisc show dev $DUMMY",
>> +        "matchPattern": "qdisc cake 1: root refcnt [0-9]+ bandwidth unlimited besteffort triple-isolate nonat nowash no-ack-filter split-gso rtt 100ms raw overhead",
>> +        "matchCount": "1",
>> +        "teardown": [
>> +            "$TC qdisc del dev $DUMMY handle 1: root",
>> +            "$IP link del dev $DUMMY type dummy"
>> +        ]
>> +    },
>> +    {
>> +        "id": "a032",
>> +        "name": "Create CAKE with diffserv8 flag",
>> +        "category": [
>> +            "qdisc",
>> +            "cake"
>> +        ],
>> +        "plugins": {
>> +            "requires": "nsPlugin"
>> +        },
>> +        "setup": [
>> +            "$IP link add dev $DUMMY type dummy || /bin/true"
>> +        ],
>> +        "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root cake diffserv8",
>> +        "expExitCode": "0",
>> +        "verifyCmd": "$TC qdisc show dev $DUMMY",
>> +        "matchPattern": "qdisc cake 1: root refcnt [0-9]+ bandwidth unlimited diffserv8 triple-isolate nonat nowash no-ack-filter split-gso rtt 100ms raw overhead",
>> +        "matchCount": "1",
>> +        "teardown": [
>> +            "$TC qdisc del dev $DUMMY handle 1: root",
>> +            "$IP link del dev $DUMMY type dummy"
>> +        ]
>> +    },
>> +    {
>> +        "id": "2349",
>> +        "name": "Create CAKE with diffserv4 flag",
>> +        "category": [
>> +            "qdisc",
>> +            "cake"
>> +        ],
>> +        "plugins": {
>> +            "requires": "nsPlugin"
>> +        },
>> +        "setup": [
>> +            "$IP link add dev $DUMMY type dummy || /bin/true"
>> +        ],
>> +        "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root cake diffserv4",
>> +        "expExitCode": "0",
>> +        "verifyCmd": "$TC qdisc show dev $DUMMY",
>> +        "matchPattern": "qdisc cake 1: root refcnt [0-9]+ bandwidth unlimited diffserv4 triple-isolate nonat nowash no-ack-filter split-gso rtt 100ms raw overhead",
>> +        "matchCount": "1",
>> +        "teardown": [
>> +            "$TC qdisc del dev $DUMMY handle 1: root",
>> +            "$IP link del dev $DUMMY type dummy"
>> +        ]
>> +    },
>> +    {
>> +        "id": "8472",
>> +        "name": "Create CAKE with flowblind flag",
>> +        "category": [
>> +            "qdisc",
>> +            "cake"
>> +        ],
>> +        "plugins": {
>> +            "requires": "nsPlugin"
>> +        },
>> +        "setup": [
>> +            "$IP link add dev $DUMMY type dummy || /bin/true"
>> +        ],
>> +        "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root cake flowblind",
>> +        "expExitCode": "0",
>> +        "verifyCmd": "$TC qdisc show dev $DUMMY",
>> +        "matchPattern": "qdisc cake 1: root refcnt [0-9]+ bandwidth unlimited diffserv3 flowblind nonat nowash no-ack-filter split-gso rtt 100ms raw overhead",
>> +        "matchCount": "1",
>> +        "teardown": [
>> +            "$TC qdisc del dev $DUMMY handle 1: root",
>> +            "$IP link del dev $DUMMY type dummy"
>> +        ]
>> +    },
>> +    {
>> +        "id": "2341",
>> +        "name": "Create CAKE with dsthost and nat flag",
>> +        "category": [
>> +            "qdisc",
>> +            "cake"
>> +        ],
>> +        "plugins": {
>> +            "requires": "nsPlugin"
>> +        },
>> +        "setup": [
>> +            "$IP link add dev $DUMMY type dummy || /bin/true"
>> +        ],
>> +        "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root cake dsthost nat",
>> +        "expExitCode": "0",
>> +        "verifyCmd": "$TC qdisc show dev $DUMMY",
>> +        "matchPattern": "qdisc cake 1: root refcnt [0-9]+ bandwidth unlimited diffserv3 dsthost nat nowash no-ack-filter split-gso rtt 100ms raw overhead",
>> +        "matchCount": "1",
>> +        "teardown": [
>> +            "$TC qdisc del dev $DUMMY handle 1: root",
>> +            "$IP link del dev $DUMMY type dummy"
>> +        ]
>> +    },
>> +    {
>> +        "id": "5134",
>> +        "name": "Create CAKE with wash flag",
>> +        "category": [
>> +            "qdisc",
>> +            "cake"
>> +        ],
>> +        "plugins": {
>> +            "requires": "nsPlugin"
>> +        },
>> +        "setup": [
>> +            "$IP link add dev $DUMMY type dummy || /bin/true"
>> +        ],
>> +        "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root cake hosts wash",
>> +        "expExitCode": "0",
>> +        "verifyCmd": "$TC qdisc show dev $DUMMY",
>> +        "matchPattern": "qdisc cake 1: root refcnt [0-9]+ bandwidth unlimited diffserv3 hosts nonat wash no-ack-filter split-gso rtt 100ms raw overhead",
>> +        "matchCount": "1",
>> +        "teardown": [
>> +            "$TC qdisc del dev $DUMMY handle 1: root",
>> +            "$IP link del dev $DUMMY type dummy"
>> +        ]
>> +    },
>> +    {
>> +        "id": "2302",
>> +        "name": "Create CAKE with flowblind and no-split-gso flag",
>> +        "category": [
>> +            "qdisc",
>> +            "cake"
>> +        ],
>> +        "plugins": {
>> +            "requires": "nsPlugin"
>> +        },
>> +        "setup": [
>> +            "$IP link add dev $DUMMY type dummy || /bin/true"
>> +        ],
>> +        "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root cake flowblind no-split-gso",
>> +        "expExitCode": "0",
>> +        "verifyCmd": "$TC qdisc show dev $DUMMY",
>> +        "matchPattern": "qdisc cake 1: root refcnt [0-9]+ bandwidth unlimited diffserv3 flowblind nonat nowash no-ack-filter no-split-gso rtt 100ms raw overhead",
>> +        "matchCount": "1",
>> +        "teardown": [
>> +            "$TC qdisc del dev $DUMMY handle 1: root",
>> +            "$IP link del dev $DUMMY type dummy"
>> +        ]
>> +    },
>> +    {
>> +        "id": "0768",
>> +        "name": "Create CAKE with dual-srchost and ack-filter flag",
>> +        "category": [
>> +            "qdisc",
>> +            "cake"
>> +        ],
>> +        "plugins": {
>> +            "requires": "nsPlugin"
>> +        },
>> +        "setup": [
>> +            "$IP link add dev $DUMMY type dummy || /bin/true"
>> +        ],
>> +        "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root cake dual-srchost ack-filter",
>> +        "expExitCode": "0",
>> +        "verifyCmd": "$TC qdisc show dev $DUMMY",
>> +        "matchPattern": "qdisc cake 1: root refcnt [0-9]+ bandwidth unlimited diffserv3 dual-srchost nonat nowash ack-filter split-gso rtt 100ms raw overhead",
>> +        "matchCount": "1",
>> +        "teardown": [
>> +            "$TC qdisc del dev $DUMMY handle 1: root",
>> +            "$IP link del dev $DUMMY type dummy"
>> +        ]
>> +    },
>> +    {
>> +        "id": "0238",
>> +        "name": "Create CAKE with dual-dsthost and ack-filter-aggressive flag",
>> +        "category": [
>> +            "qdisc",
>> +            "cake"
>> +        ],
>> +        "plugins": {
>> +            "requires": "nsPlugin"
>> +        },
>> +        "setup": [
>> +            "$IP link add dev $DUMMY type dummy || /bin/true"
>> +        ],
>> +        "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root cake dual-dsthost ack-filter-aggressive",
>> +        "expExitCode": "0",
>> +        "verifyCmd": "$TC qdisc show dev $DUMMY",
>> +        "matchPattern": "qdisc cake 1: root refcnt [0-9]+ bandwidth unlimited diffserv3 dual-dsthost nonat nowash ack-filter-aggressive split-gso rtt 100ms raw overhead",
>> +        "matchCount": "1",
>> +        "teardown": [
>> +            "$TC qdisc del dev $DUMMY handle 1: root",
>> +            "$IP link del dev $DUMMY type dummy"
>> +        ]
>> +    },
>> +    {
>> +        "id": "6573",
>> +        "name": "Create CAKE with memlimit and ptm flag",
>> +        "category": [
>> +            "qdisc",
>> +            "cake"
>> +        ],
>> +        "plugins": {
>> +            "requires": "nsPlugin"
>> +        },
>> +        "setup": [
>> +            "$IP link add dev $DUMMY type dummy || /bin/true"
>> +        ],
>> +        "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root cake memlimit 10000 ptm",
>> +        "expExitCode": "0",
>> +        "verifyCmd": "$TC qdisc show dev $DUMMY",
>> +        "matchPattern": "qdisc cake 1: root refcnt [0-9]+ bandwidth unlimited diffserv3 triple-isolate nonat nowash no-ack-filter split-gso rtt 100ms raw ptm overhead 0 memlimit 10000b",
>> +        "matchCount": "1",
>> +        "teardown": [
>> +            "$TC qdisc del dev $DUMMY handle 1: root",
>> +            "$IP link del dev $DUMMY type dummy"
>> +        ]
>> +    },
>> +    {
>> +        "id": "2436",
>> +        "name": "Create CAKE with fwmark and atm flag",
>> +        "category": [
>> +            "qdisc",
>> +            "cake"
>> +        ],
>> +        "plugins": {
>> +            "requires": "nsPlugin"
>> +        },
>> +        "setup": [
>> +            "$IP link add dev $DUMMY type dummy || /bin/true"
>> +        ],
>> +        "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root cake fwmark 8 atm",
>> +        "expExitCode": "0",
>> +        "verifyCmd": "$TC qdisc show dev $DUMMY",
>> +        "matchPattern": "qdisc cake 1: root refcnt [0-9]+ bandwidth unlimited diffserv3 triple-isolate nonat nowash no-ack-filter split-gso rtt 100ms raw atm overhead 0 fwmark 0x8",
>> +        "matchCount": "1",
>> +        "teardown": [
>> +            "$TC qdisc del dev $DUMMY handle 1: root",
>> +            "$IP link del dev $DUMMY type dummy"
>> +        ]
>> +    },
>> +    {
>> +        "id": "3984",
>> +        "name": "Create CAKE with overhead and mpu",
>> +        "category": [
>> +            "qdisc",
>> +            "cake"
>> +        ],
>> +        "plugins": {
>> +            "requires": "nsPlugin"
>> +        },
>> +        "setup": [
>> +            "$IP link add dev $DUMMY type dummy || /bin/true"
>> +        ],
>> +        "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root cake overhead 128 mpu 256",
>> +        "expExitCode": "0",
>> +        "verifyCmd": "$TC qdisc show dev $DUMMY",
>> +        "matchPattern": "qdisc cake 1: root refcnt [0-9]+ bandwidth unlimited diffserv3 triple-isolate nonat nowash no-ack-filter split-gso rtt 100ms noatm overhead 128 mpu 256",
>> +        "matchCount": "1",
>> +        "teardown": [
>> +            "$TC qdisc del dev $DUMMY handle 1: root",
>> +            "$IP link del dev $DUMMY type dummy"
>> +        ]
>> +    },
>> +    {
>> +        "id": "2342",
>> +        "name": "Create CAKE with conservative and ingress flag",
>> +        "category": [
>> +            "qdisc",
>> +            "cake"
>> +        ],
>> +        "plugins": {
>> +            "requires": "nsPlugin"
>> +        },
>> +        "setup": [
>> +            "$IP link add dev $DUMMY type dummy || /bin/true"
>> +        ],
>> +        "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root cake conservative ingress",
>> +        "expExitCode": "0",
>> +        "verifyCmd": "$TC qdisc show dev $DUMMY",
>> +        "matchPattern": "qdisc cake 1: root refcnt [0-9]+ bandwidth unlimited diffserv3 triple-isolate nonat nowash ingress no-ack-filter split-gso rtt 100ms atm overhead 48",
>> +        "matchCount": "1",
>> +        "teardown": [
>> +            "$TC qdisc del dev $DUMMY handle 1: root",
>> +            "$IP link del dev $DUMMY type dummy"
>> +        ]
>> +    },
>> +    {
>> +        "id": "2342",
> 
> Be careful, you are using ID 2342 for 3 test cases in this file.
> Each test case must have a unique ID.
> 
> 
> 
Hi Victor:
	Thank you for your review. My mistake. I will check more
carefully, and test again. Then send V2.

Zhengchao Shao
>> +        "name": "Delete CAKE with conservative and ingress flag",
>> +        "category": [
>> +            "qdisc",
>> +            "cake"
>> +        ],
>> +        "plugins": {
>> +            "requires": "nsPlugin"
>> +        },
>> +        "setup": [
>> +            "$IP link add dev $DUMMY type dummy || /bin/true",
>> +            "$TC qdisc add dev $DUMMY handle 1: root cake conservative ingress"
>> +        ],
>> +        "cmdUnderTest": "$TC qdisc del dev $DUMMY handle 1: root",
>> +        "expExitCode": "0",
>> +        "verifyCmd": "$TC qdisc show dev $DUMMY",
>> +        "matchPattern": "qdisc cake 1: root refcnt [0-9]+ bandwidth unlimited diffserv3 triple-isolate nonat nowash ingress no-ack-filter split-gso rtt 100ms atm overhead 48",
>> +        "matchCount": "0",
>> +        "teardown": [
>> +            "$TC qdisc del dev $DUMMY handle 1: root",
>> +            "$IP link del dev $DUMMY type dummy"
>> +        ]
>> +    },
>> +    {
>> +        "id": "2342",
>> +        "name": "Replace CAKE with mpu",
>> +        "category": [
>> +            "qdisc",
>> +            "cake"
>> +        ],
>> +        "plugins": {
>> +            "requires": "nsPlugin"
>> +        },
>> +        "setup": [
>> +            "$IP link add dev $DUMMY type dummy || /bin/true",
>> +            "$TC qdisc add dev $DUMMY handle 1: root cake overhead 128 mpu 256"
>> +        ],
>> +        "cmdUnderTest": "$TC qdisc replace dev $DUMMY handle 1: root cake mpu 128",
>> +        "expExitCode": "0",
>> +        "verifyCmd": "$TC qdisc show dev $DUMMY",
>> +        "matchPattern": "qdisc cake 1: root refcnt [0-9]+ bandwidth unlimited diffserv3 triple-isolate nonat nowash no-ack-filter split-gso rtt 100ms noatm overhead 128 mpu 128",
>> +        "matchCount": "1",
>> +        "teardown": [
>> +            "$TC qdisc del dev $DUMMY handle 1: root",
>> +            "$IP link del dev $DUMMY type dummy"
>> +        ]
>> +    },
>> +    {
>> +        "id": "2313",
>> +        "name": "Change CAKE with mpu",
>> +        "category": [
>> +            "qdisc",
>> +            "cake"
>> +        ],
>> +        "plugins": {
>> +            "requires": "nsPlugin"
>> +        },
>> +        "setup": [
>> +            "$IP link add dev $DUMMY type dummy || /bin/true",
>> +            "$TC qdisc add dev $DUMMY handle 1: root cake overhead 128 mpu 256"
>> +        ],
>> +        "cmdUnderTest": "$TC qdisc change dev $DUMMY handle 1: root cake mpu 128",
>> +        "expExitCode": "0",
>> +        "verifyCmd": "$TC qdisc show dev $DUMMY",
>> +        "matchPattern": "qdisc cake 1: root refcnt [0-9]+ bandwidth unlimited diffserv3 triple-isolate nonat nowash no-ack-filter split-gso rtt 100ms noatm overhead 128 mpu 128",
>> +        "matchCount": "1",
>> +        "teardown": [
>> +            "$TC qdisc del dev $DUMMY handle 1: root",
>> +            "$IP link del dev $DUMMY type dummy"
>> +        ]
>> +    },
>> +    {
>> +        "id": "4365",
>> +        "name": "Show CAKE class",
>> +        "category": [
>> +            "qdisc",
>> +            "cake"
>> +        ],
>> +        "plugins": {
>> +            "requires": "nsPlugin"
>> +        },
>> +        "setup": [
>> +            "$IP link add dev $DUMMY type dummy || /bin/true"
>> +        ],
>> +        "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root cake",
>> +        "expExitCode": "0",
>> +        "verifyCmd": "$TC class show dev $DUMMY",
>> +        "matchPattern": "class cake",
>> +        "matchCount": "0",
>> +        "teardown": [
>> +            "$TC qdisc del dev $DUMMY handle 1: root",
>> +            "$IP link del dev $DUMMY type dummy"
>> +        ]
>> +    }
>> +]
>> --
>> 2.17.1
>>

  reply	other threads:[~2022-09-17  1:48 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-16  3:05 [PATCH net-next 00/18] refactor duplicate codes in the qdisc class walk function Zhengchao Shao
2022-09-16  3:05 ` [PATCH net-next 01/18] net/sched: sch_api: add helper for tc qdisc walker stats dump Zhengchao Shao
2022-09-16  3:05 ` [PATCH net-next 02/18] net/sched: use tc_qdisc_stats_dump() in qdisc Zhengchao Shao
2022-09-16  3:05 ` [PATCH net-next 03/18] selftests/tc-testings: add selftests for cake qdisc Zhengchao Shao
2022-09-16 20:32   ` Victor Nogueira
2022-09-17  1:48     ` shaozhengchao [this message]
2022-09-16  3:05 ` [PATCH net-next 04/18] selftests/tc-testings: add selftests for cbq qdisc Zhengchao Shao
2022-09-16  3:05 ` [PATCH net-next 05/18] selftests/tc-testings: add selftests for cbs qdisc Zhengchao Shao
2022-09-16 20:36   ` Victor Nogueira
2022-09-16  3:05 ` [PATCH net-next 06/18] selftests/tc-testings: add selftests for drr qdisc Zhengchao Shao
2022-09-16  3:05 ` [PATCH net-next 07/18] selftests/tc-testings: add selftests for dsmark qdisc Zhengchao Shao
2022-09-16  3:05 ` [PATCH net-next 08/18] selftests/tc-testings: add selftests for fq_codel qdisc Zhengchao Shao
2022-09-16 20:38   ` Victor Nogueira
2022-09-16  3:05 ` [PATCH net-next 09/18] selftests/tc-testings: add selftests for hfsc qdisc Zhengchao Shao
2022-09-16  3:05 ` [PATCH net-next 10/18] selftests/tc-testings: add selftests for htb qdisc Zhengchao Shao
2022-09-16  3:05 ` [PATCH net-next 11/18] selftests/tc-testings: add selftests for mqprio qdisc Zhengchao Shao
2022-09-16  3:05 ` [PATCH net-next 12/18] selftests/tc-testings: add selftests for multiq qdisc Zhengchao Shao
2022-09-16 20:40   ` Victor Nogueira
2022-09-16  3:05 ` [PATCH net-next 13/18] selftests/tc-testings: add selftests for netem qdisc Zhengchao Shao
2022-09-16 20:44   ` Victor Nogueira
2022-09-16  3:05 ` [PATCH net-next 14/18] selftests/tc-testings: add selftests for qfq qdisc Zhengchao Shao
2022-09-16  3:05 ` [PATCH net-next 15/18] selftests/tc-testings: add show class case for ingress qdisc Zhengchao Shao
2022-09-16  3:05 ` [PATCH net-next 16/18] selftests/tc-testings: add show class case for mq qdisc Zhengchao Shao
2022-09-16  3:05 ` [PATCH net-next 17/18] selftests/tc-testings: add show class case for prio qdisc Zhengchao Shao
2022-09-16  3:05 ` [PATCH net-next 18/18] selftests/tc-testings: add show class case for red qdisc Zhengchao Shao

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=2bcd7b7d-c6d5-e123-0d3c-07f6b9274e88@huawei.com \
    --to=shaozhengchao@huawei.com \
    --cc=cake@lists.bufferbloat.net \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=jhs@mojatatu.com \
    --cc=jiri@resnulli.us \
    --cc=kuba@kernel.org \
    --cc=linux-kselftest@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=shuah@kernel.org \
    --cc=stephen@networkplumber.org \
    --cc=toke@toke.dk \
    --cc=victor@mojatatu.com \
    --cc=vinicius.gomes@intel.com \
    --cc=weiyongjun1@huawei.com \
    --cc=xiyou.wangcong@gmail.com \
    --cc=yuehaibing@huawei.com \
    --cc=zhijianx.li@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox