From 63bc42c87241bcfc2ff4ef071aaca5dac1be4049 Mon Sep 17 00:00:00 2001 From: Isaac Hollander McCreery Date: Thu, 14 Jan 2016 14:07:33 -0800 Subject: [PATCH] Mark Volumes and PersistentVolumes as [Feature:Volumes] --- test/e2e/persistent_volumes.go | 7 +++---- test/e2e/volumes.go | 7 +++---- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/test/e2e/persistent_volumes.go b/test/e2e/persistent_volumes.go index 4744b8ff959..9673c831d73 100644 --- a/test/e2e/persistent_volumes.go +++ b/test/e2e/persistent_volumes.go @@ -28,10 +28,9 @@ import ( client "k8s.io/kubernetes/pkg/client/unversioned" ) -// Marked with [Skipped] to skip the test by default (see driver.go), -// the test needs privileged containers, which are disabled by default. -// Run the test with "go run hack/e2e.go ... --ginkgo.focus=PersistentVolume" -var _ = Describe("PersistentVolumes [Skipped]", func() { +// This test needs privileged containers, which are disabled by default. Run +// the test with "go run hack/e2e.go ... --ginkgo.focus=[Feature:Volumes]" +var _ = Describe("PersistentVolumes [Feature:Volumes]", func() { framework := NewFramework("pv") var c *client.Client var ns string diff --git a/test/e2e/volumes.go b/test/e2e/volumes.go index b16a725d7f6..c359985327c 100644 --- a/test/e2e/volumes.go +++ b/test/e2e/volumes.go @@ -326,10 +326,9 @@ func deleteCinderVolume(name string) error { return err } -// Marked with [Skipped] to skip the test by default (see driver.go), -// these tests needs privileged containers, which are disabled by default. -// Run the test with "go run hack/e2e.go ... --ginkgo.focus=Volume" -var _ = Describe("Volumes [Skipped]", func() { +// These tests need privileged containers, which are disabled by default. Run +// the test with "go run hack/e2e.go ... --ginkgo.focus=[Feature:Volumes]" +var _ = Describe("Volumes [Feature:Volumes]", func() { framework := NewFramework("volume") // If 'false', the test won't clear its volumes upon completion. Useful for debugging,