diff options
author | 2024-06-24 08:14:05 -0400 | |
---|---|---|
committer | 2024-06-24 16:06:40 +0000 | |
commit | 1fde999eec2e0f6f8997c1bf41b638f085a14b07 (patch) | |
tree | 3103c383d67cf9aaab1b467ff2e972f4b2d78c38 /extras/hs-test/infra/suite_no_topo.go | |
parent | 228e195e115a195b408d90e25a85dbbd8560059d (diff) |
hs-test: added interrupt mode tests
Type: test
Change-Id: I327fa1a4ea23a3af3aa33e5260367426a11e7b4f
Signed-off-by: Adrian Villin <avillin@cisco.com>
Diffstat (limited to 'extras/hs-test/infra/suite_no_topo.go')
-rw-r--r-- | extras/hs-test/infra/suite_no_topo.go | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/extras/hs-test/infra/suite_no_topo.go b/extras/hs-test/infra/suite_no_topo.go index c48e6fb1845..5f53f55f1bb 100644 --- a/extras/hs-test/infra/suite_no_topo.go +++ b/extras/hs-test/infra/suite_no_topo.go @@ -42,7 +42,14 @@ func (s *NoTopoSuite) SetupTest() { sessionConfig. NewStanza("session"). Append("enable"). - Append("use-app-socket-api").Close() + Append("use-app-socket-api") + + if strings.Contains(CurrentSpecReport().LeafNodeText, "InterruptMode") { + sessionConfig.Append("use-private-rx-mqs").Close() + s.Log("**********************INTERRUPT MODE**********************") + } else { + sessionConfig.Close() + } container := s.GetContainerByName(SingleTopoContainerVpp) vpp, _ := container.newVppInstance(container.AllocatedCpus, sessionConfig) |