forked from quic-go/quic-go
Pass -v to ginkgo in integrationtests
This commit is contained in:
@@ -9,5 +9,5 @@ fi
|
||||
|
||||
if [ ${TESTMODE} == "integration" ]; then
|
||||
ginkgo --randomizeAllSpecs --randomizeSuites --trace --progress -focus "Benchmark"
|
||||
ginkgo -r --randomizeAllSpecs --randomizeSuites --trace --progress integrationtests
|
||||
ginkgo -v -r --randomizeAllSpecs --randomizeSuites --trace --progress integrationtests
|
||||
fi
|
||||
|
||||
@@ -38,7 +38,7 @@ var _ = Describe("Drop Proxy", func() {
|
||||
"https://quic.clemente.io/data",
|
||||
)
|
||||
|
||||
session, err := Start(command, GinkgoWriter, GinkgoWriter)
|
||||
session, err := Start(command, nil, GinkgoWriter)
|
||||
Expect(err).NotTo(HaveOccurred())
|
||||
defer session.Kill()
|
||||
Eventually(session, 20).Should(Exit(0))
|
||||
|
||||
@@ -34,7 +34,7 @@ var _ = Describe("Integration tests", func() {
|
||||
"--port="+port,
|
||||
"https://quic.clemente.io/hello",
|
||||
)
|
||||
session, err := Start(command, GinkgoWriter, GinkgoWriter)
|
||||
session, err := Start(command, nil, GinkgoWriter)
|
||||
Expect(err).NotTo(HaveOccurred())
|
||||
defer session.Kill()
|
||||
Eventually(session, 5).Should(Exit(0))
|
||||
@@ -51,7 +51,7 @@ var _ = Describe("Integration tests", func() {
|
||||
"--body=foo",
|
||||
"https://quic.clemente.io/echo",
|
||||
)
|
||||
session, err := Start(command, GinkgoWriter, GinkgoWriter)
|
||||
session, err := Start(command, nil, GinkgoWriter)
|
||||
Expect(err).NotTo(HaveOccurred())
|
||||
defer session.Kill()
|
||||
Eventually(session, 5).Should(Exit(0))
|
||||
|
||||
@@ -86,7 +86,7 @@ var _ = Describe("Server tests", func() {
|
||||
"--certificate_file="+filepath.Join(tmpDir, "cert.pem"),
|
||||
"--port="+serverPort,
|
||||
)
|
||||
session, err = Start(command, GinkgoWriter, GinkgoWriter)
|
||||
session, err = Start(command, nil, GinkgoWriter)
|
||||
Expect(err).NotTo(HaveOccurred())
|
||||
}()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user