From bf8ae2bb50cbf7a50bec5cf14c0b155972c8a1c8 Mon Sep 17 00:00:00 2001 From: Lucas Clemente Date: Wed, 14 Jun 2017 18:20:28 +0200 Subject: [PATCH] Pass -v to ginkgo in integrationtests --- .travis/script.sh | 2 +- integrationtests/drop_test.go | 2 +- integrationtests/integration_test.go | 4 ++-- integrationtests/server_test.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis/script.sh b/.travis/script.sh index e2a24634d..94d60a58e 100755 --- a/.travis/script.sh +++ b/.travis/script.sh @@ -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 diff --git a/integrationtests/drop_test.go b/integrationtests/drop_test.go index 8c4ff3f1e..6deb1a147 100644 --- a/integrationtests/drop_test.go +++ b/integrationtests/drop_test.go @@ -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)) diff --git a/integrationtests/integration_test.go b/integrationtests/integration_test.go index a4d160123..68d77791a 100644 --- a/integrationtests/integration_test.go +++ b/integrationtests/integration_test.go @@ -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)) diff --git a/integrationtests/server_test.go b/integrationtests/server_test.go index 0b772105c..99ed58f57 100644 --- a/integrationtests/server_test.go +++ b/integrationtests/server_test.go @@ -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()) }() }