syscall: fix creds_test to reliably close os.File
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 26 Oct 2012 17:50:10 +0000 (17:50 +0000)
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 26 Oct 2012 17:50:10 +0000 (17:50 +0000)
commit8bd4cb0808e21b288e4c85baf090372f4fe25b17
treede04d5291829d3f364a180607a01c072cc985bb6
parenta4a5a77adfc9c28d6963e5ae054c997d57cfc7fa
syscall: fix creds_test to reliably close os.File

Uncovered by Uros Bizjak.

Before this patch the test would close the file descriptor but
not the os.File.  When the os.File was GC'ed, the finalizer
would close the file descriptor again.  That would cause
problems if the same file descriptor were returned by a later
call to open in another test.

On my system:

> GOGC=30 go test
--- FAIL: TestPassFD (0.04 seconds)
passfd_test.go:62:  FileConn: dup: bad file descriptor
FAIL

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@192854 138bc75d-0d04-0410-961f-82ee72b054a4
libgo/go/syscall/creds_test.go