summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/test_ip4_vrf_multi_instance.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/test_ip4_vrf_multi_instance.py b/test/test_ip4_vrf_multi_instance.py
index b427919415b..b84086ae824 100644
--- a/test/test_ip4_vrf_multi_instance.py
+++ b/test/test_ip4_vrf_multi_instance.py
@@ -142,7 +142,7 @@ class TestIp4VrfMultiInst(VppTestCase):
raise
def setUp(self):
- """ip_add_del_route
+ """
Clear trace and packet infos before running each test.
"""
super(TestIp4VrfMultiInst, self).setUp()
@@ -158,7 +158,7 @@ class TestIp4VrfMultiInst(VppTestCase):
self.logger.info(self.vapi.ppcli("show ip arp"))
def create_vrf_and_assign_interfaces(self, count, start=1):
- """"
+ """
Create required number of FIB tables / VRFs, put 3 l2-pg interfaces
to every FIB table / VRF.
@@ -195,7 +195,7 @@ class TestIp4VrfMultiInst(VppTestCase):
self.logger.debug(self.vapi.ppcli("show ip arp"))
def delete_vrf(self, vrf_id):
- """"
+ """
Delete required FIB table / VRF.
:param int vrf_id: The FIB table / VRF ID to be deleted.
@@ -307,12 +307,12 @@ class TestIp4VrfMultiInst(VppTestCase):
def run_verify_test(self):
"""
- Create packet streams for all configured l2-pg interfaces, send all
+ Create packet streams for all configured l2-pg interfaces, send all \
prepared packet streams and verify that:
- all packets received correctly on all pg-l2 interfaces assigned
- to bridge domains
+ to bridge domains
- no packet received on all pg-l2 interfaces not assigned to bridge
- domains
+ domains
:raise RuntimeError: If no packet captured on l2-pg interface assigned
to the bridge domain or if any packet is captured on l2-pg
mrr.robot?h=rls2406'>logtreecommitdiffstats
path: root/tests/vpp/perf/vm_vhost/10ge2p1x520-1lbvpplacp-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-mrr.robot
blob: 0ef92162fff66f3a98e2cfe78814f68981db40f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161