blob: f3bf1be56a8ae1f9ad6c3ee01f27915881db0396 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
package main
import (
"fmt"
"os"
"strings"
"testing"
"time"
. "fd.io/hs-test/infra"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
var _ = ReportAfterSuite("VPP version under test", func(report Report) {
for i := range report.SpecReports {
specReport := report.SpecReports[i]
for j := range specReport.ReportEntries {
reportEntry := specReport.ReportEntries[j]
if reportEntry.Name == "VPP version" {
fmt.Println(reportEntry.Value)
return
}
}
}
})
func TestHst(t *testing.T) {
if *IsVppDebug {
// 30 minute timeout so that the framework won't timeout while debugging
TestTimeout = time.Minute * 30
} else {
TestTimeout = time.Minute * 5
}
output, err := os.ReadFile("/sys/devices/system/node/online")
if err == nil && strings.Contains(string(output), "-") {
NumaAwareCpuAlloc = true
}
// creates a file with PPID, used for 'make cleanup-hst'
ppid := fmt.Sprint(os.Getppid())
ppid = ppid[:len(ppid)-1]
f, _ := os.Create(".last_hst_ppid")
f.Write([]byte(ppid))
f.Close()
RegisterFailHandler(Fail)
RunSpecs(t, "HST")
if *DryRun || *IsPersistent {
fmt.Println("\033[36m" + "Use 'make cleanup-hst' to remove IP files, " +
"namespaces and containers. \nPPID: " + ppid + "\033[0m")
}
}
|