summaryrefslogtreecommitdiff
path: root/test/e2e/top_test.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2018-07-28 11:11:31 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2018-07-28 22:51:08 +0000
commit433cbd52543dccdad9806b8d44fd5d054ed559f1 (patch)
treedd7e68b113506ce6f20fc75ba2f80c3d43fec5ab /test/e2e/top_test.go
parenta4a667eac9ad288b927696effa30a084b0b39787 (diff)
downloadpodman-433cbd52543dccdad9806b8d44fd5d054ed559f1.tar.gz
podman-433cbd52543dccdad9806b8d44fd5d054ed559f1.tar.bz2
podman-433cbd52543dccdad9806b8d44fd5d054ed559f1.zip
Show duration for each ginkgo test and test speed improvements
Because our tests are getting so long, we want to be able to audit which tests are taking the longest to complete. This may indicate a bad test, bad CI, bad code, etc and therefore should be auditable. Also, make speed improvements to tests by making sure we only unpack caches images that actually get used. Signed-off-by: baude <bbaude@redhat.com> Closes: #1178 Approved by: mheon
Diffstat (limited to 'test/e2e/top_test.go')
-rw-r--r--test/e2e/top_test.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/e2e/top_test.go b/test/e2e/top_test.go
index d26a19ba4..9537c2f50 100644
--- a/test/e2e/top_test.go
+++ b/test/e2e/top_test.go
@@ -1,6 +1,7 @@
package integration
import (
+ "fmt"
"os"
. "github.com/onsi/ginkgo"
@@ -25,7 +26,9 @@ var _ = Describe("Podman top", func() {
AfterEach(func() {
podmanTest.Cleanup()
-
+ f := CurrentGinkgoTestDescription()
+ timedResult := fmt.Sprintf("Test: %s completed in %f seconds", f.TestText, f.Duration.Seconds())
+ GinkgoWriter.Write([]byte(timedResult))
})
It("podman top without container name or id", func() {