Commit 326b21e6 authored by jayunit100's avatar jayunit100

Use ginkoRecover to prevent shell.go from causing cryptic crash when running tests from wrong dir

parent 3d1dfd47
...@@ -33,11 +33,13 @@ var ( ...@@ -33,11 +33,13 @@ var (
) )
var _ = Describe("Shell", func() { var _ = Describe("Shell", func() {
defer GinkgoRecover()
// Slurp up all the tests in hack/e2e-suite // Slurp up all the tests in hack/e2e-suite
bashE2ERoot := filepath.Join(root, "hack/e2e-suite") bashE2ERoot := filepath.Join(root, "hack/e2e-suite")
files, err := ioutil.ReadDir(bashE2ERoot) files, err := ioutil.ReadDir(bashE2ERoot)
if err != nil { if err != nil {
Fail(err.Error()) Fail(fmt.Sprintf("Error reading test suites from %v %v", bashE2ERoot, err.Error()))
} }
for _, file := range files { for _, file := range files {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment