Update vendored ginkgo.

This includes onsi/ginkgo#262, which improves the JUnit stacktraces.
This commit is contained in:
Ryan Hitchman
2016-07-25 13:40:15 -07:00
parent 2f545e1f45
commit ea43036dc0
10 changed files with 20 additions and 10 deletions

View File

@@ -8,4 +8,4 @@ import "syscall"
// use the nearly identical syscall.Dup3 instead
func syscallDup(oldfd int, newfd int) (err error) {
return syscall.Dup3(oldfd, newfd, 0)
}
}

View File

@@ -6,4 +6,4 @@ import "golang.org/x/sys/unix"
func syscallDup(oldfd int, newfd int) (err error) {
return unix.Dup2(oldfd, newfd)
}
}

View File

@@ -8,4 +8,4 @@ import "syscall"
func syscallDup(oldfd int, newfd int) (err error) {
return syscall.Dup2(oldfd, newfd)
}
}