Merge pull request #6501 from jayunit100/shell-loc-log

Use ginkoRecover to prevent shell.go from causing cryptic crash when run...
pull/6/head
Rohit Jnagal 2015-04-07 09:23:08 -07:00
commit 3cf04a66fb
1 changed files with 3 additions and 1 deletions

View File

@ -33,11 +33,13 @@ var (
)
var _ = Describe("Shell", func() {
defer GinkgoRecover()
// Slurp up all the tests in hack/e2e-suite
bashE2ERoot := filepath.Join(root, "hack/e2e-suite")
files, err := ioutil.ReadDir(bashE2ERoot)
if err != nil {
Fail(err.Error())
Fail(fmt.Sprintf("Error reading test suites from %v %v", bashE2ERoot, err.Error()))
}
for _, file := range files {