Commit c4917bfc authored by Roman Mashak's avatar Roman Mashak Committed by David S. Miller
Browse files

tc-testing: fixed two failing pedit tests



Two pedit tests were failing due to incorrect operation
value in matchPattern, should be 'add' not 'val', so fix it.

Signed-off-by: default avatarRoman Mashak <mrv@mojatatu.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c0bceb97
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -915,7 +915,7 @@
        "cmdUnderTest": "$TC actions add action pedit ex munge ip tos add 0x1 pass",
        "expExitCode": "0",
        "verifyCmd": "$TC actions list action pedit",
        "matchPattern": "action order [0-9]+:  pedit action pass keys 1.*key #0  at ipv4\\+0: val 00010000 mask ff00ffff",
        "matchPattern": "action order [0-9]+:  pedit action pass keys 1.*key #0  at ipv4\\+0: add 00010000 mask ff00ffff",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action pedit"
@@ -940,7 +940,7 @@
        "cmdUnderTest": "$TC actions add action pedit ex munge ip precedence add 0x1 pipe",
        "expExitCode": "0",
        "verifyCmd": "$TC actions list action pedit",
        "matchPattern": "action order [0-9]+:  pedit action pipe keys 1.*key #0  at ipv4\\+0: val 00010000 mask ff00ffff",
        "matchPattern": "action order [0-9]+:  pedit action pipe keys 1.*key #0  at ipv4\\+0: add 00010000 mask ff00ffff",
        "matchCount": "1",
        "teardown": [
            "$TC actions flush action pedit"