We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ebcc37e + ea2d97f commit 44a7535Copy full SHA for 44a7535
cmd/csi-sanity/main.go
@@ -22,6 +22,9 @@ import (
22
"strings"
23
"time"
24
25
+ "github.com/onsi/ginkgo"
26
+ "k8s.io/klog/v2"
27
+
28
"github.com/kubernetes-csi/csi-test/v4/pkg/sanity"
29
)
30
@@ -101,6 +104,7 @@ func main() {
101
104
os.Exit(1)
102
105
}
103
106
107
+ klog.SetOutput(ginkgo.GinkgoWriter)
108
t := testing{}
109
sanity.Test(&t, config)
110
os.Exit(t.result)
pkg/sanity/logger.go
0 commit comments