From 2908f8cf07c21f385f80d83fdad826a0eea98977 Mon Sep 17 00:00:00 2001 From: Maros Ondrejicka Date: Thu, 2 Feb 2023 08:58:04 +0100 Subject: 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 Change-Id: Idf26b0c16f87e87c97b198412af39b99d947ced6 --- extras/hs-test/main.go | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'extras/hs-test/main.go') diff --git a/extras/hs-test/main.go b/extras/hs-test/main.go index 98627a53e12..8fa1458767d 100644 --- a/extras/hs-test/main.go +++ b/extras/hs-test/main.go @@ -5,7 +5,6 @@ import ( "encoding/json" "fmt" "os" - "os/exec" "os/signal" "reflect" ) @@ -20,16 +19,6 @@ func newVppContext() (context.Context, context.CancelFunc) { return ctx, cancel } -func Vppcli(runDir, command string) (string, error) { - cmd := exec.Command("vppctl", "-s", fmt.Sprintf("%s/var/run/vpp/cli.sock", runDir), command) - o, err := cmd.CombinedOutput() - if err != nil { - fmt.Printf("failed to execute command: '%v'.\n", err) - } - fmt.Printf("Command output %s", string(o)) - return string(o), err -} - func exitOnErrCh(ctx context.Context, cancel context.CancelFunc, errCh <-chan error) { // If we already have an error, log it and exit select { -- cgit 1.2.3-korg