Skip to content

Commit 991a345

Browse files
dcarattidavem330
authored andcommitted
tc-testing: unbreak full listing of tdc testcases
the following command currently fails: [root@fedora tc-testing]# ./tdc.py -l The following test case IDs are not unique: {'6f5e'} Please correct them before continuing. this happens because there are two tests having the same id: [root@fedora tc-testing]# grep -r 6f5e tc-tests/* tc-tests/actions/pedit.json: "id": "6f5e", tc-tests/filters/basic.json: "id": "6f5e", fix it replacing the latest duplicate id with a brand new one: [root@fedora tc-testing]# sed -i 's/6f5e//1' tc-tests/filters/basic.json [root@fedora tc-testing]# ./tdc.py -i Fixes: 4717b05 ("tc-testing: Introduced tdc tests for basic filter") Signed-off-by: Davide Caratti <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent a288f10 commit 991a345

File tree

1 file changed

+1
-1
lines changed
  • tools/testing/selftests/tc-testing/tc-tests/filters

1 file changed

+1
-1
lines changed

tools/testing/selftests/tc-testing/tc-tests/filters/basic.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
]
153153
},
154154
{
155-
"id": "6f5e",
155+
"id": "b99c",
156156
"name": "Add basic filter with cmp ematch u8/transport layer and default action",
157157
"category": [
158158
"filter",

0 commit comments

Comments
 (0)