hs-test: refactor test cases from ns suite
[vpp.git] / extras / hs-test / main.go
index 98627a5..8fa1458 100644 (file)
@@ -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 {