diff options
author | Adrian Villin <avillin@cisco.com> | 2024-07-09 15:31:36 +0200 |
---|---|---|
committer | Adrian Villin <avillin@cisco.com> | 2024-07-17 18:20:54 +0200 |
commit | 25140013770d219db1b4044d78b72199d372b61b (patch) | |
tree | 67e373ede69a3411dfc0db1a29e99d9c904f097b /extras/hs-test/framework_test.go | |
parent | b69ee00c34ede374dad78f33106b39cf75087d5a (diff) |
hs-test: use docker sdk
Type: test
Change-Id: I9d6b15ca6a9aac3343e10f480dec43c4c538f1b7
Signed-off-by: Adrian Villin <avillin@cisco.com>
Diffstat (limited to 'extras/hs-test/framework_test.go')
-rw-r--r-- | extras/hs-test/framework_test.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/extras/hs-test/framework_test.go b/extras/hs-test/framework_test.go index 7c8c5648d7b..91cb1032bba 100644 --- a/extras/hs-test/framework_test.go +++ b/extras/hs-test/framework_test.go @@ -3,8 +3,6 @@ package main import ( "fmt" "os" - "path/filepath" - "runtime" "strings" "testing" "time" @@ -14,11 +12,6 @@ import ( . "github.com/onsi/gomega" ) -func getTestFilename() string { - _, filename, _, _ := runtime.Caller(2) - return filepath.Base(filename) -} - func TestHst(t *testing.T) { if *IsVppDebug { // 30 minute timeout so that the framework won't timeout while debugging @@ -28,7 +21,6 @@ func TestHst(t *testing.T) { } output, err := os.ReadFile("/sys/devices/system/node/online") - fmt.Println(string(output)) if err == nil && strings.Contains(string(output), "-") { NumaAwareCpuAlloc = true } |