diff options
author | Maros Ondrejicka <maros.ondrejicka@pantheon.tech> | 2023-02-02 08:58:04 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2023-02-10 05:23:19 +0000 |
commit | 2908f8cf07c21f385f80d83fdad826a0eea98977 (patch) | |
tree | 6391c5b989f2a7800958489feb1d7f460a87e850 /extras/hs-test/topo-network | |
parent | 0a192ea93df9d1cd4d7777bcc5418a2f9e861a6c (diff) |
hs-test: refactor test cases from ns suite
This converts more tests to configure VPP from test context.
Type: test
Signed-off-by: Maros Ondrejicka <maros.ondrejicka@pantheon.tech>
Change-Id: Idf26b0c16f87e87c97b198412af39b99d947ced6
Diffstat (limited to 'extras/hs-test/topo-network')
-rw-r--r-- | extras/hs-test/topo-network/ns.yaml | 8 | ||||
-rw-r--r-- | extras/hs-test/topo-network/tap.yaml | 1 |
2 files changed, 4 insertions, 5 deletions
diff --git a/extras/hs-test/topo-network/ns.yaml b/extras/hs-test/topo-network/ns.yaml index 2f7ed39d2e2..c01836507a6 100644 --- a/extras/hs-test/topo-network/ns.yaml +++ b/extras/hs-test/topo-network/ns.yaml @@ -6,16 +6,16 @@ devices: - name: "server" type: "netns" - - name: "vpp0" + - name: "hst_client_vpp" type: "veth" peer: name: "client" netns: "client" - ip4: "10.0.0.1/24" + ip4: true - - name: "vpp1" + - name: "hst_server_vpp" type: "veth" peer: name: "server" netns: "server" - ip4: "10.0.1.1/24" + ip4: true diff --git a/extras/hs-test/topo-network/tap.yaml b/extras/hs-test/topo-network/tap.yaml index 4cd95d6e48a..6f041325987 100644 --- a/extras/hs-test/topo-network/tap.yaml +++ b/extras/hs-test/topo-network/tap.yaml @@ -2,4 +2,3 @@ devices: - name: "tap0" type: "tap" - ip4: "10.10.10.1/24" |