1. 31 Oct, 2012 11 commits
  2. 30 Oct, 2012 14 commits
  3. 29 Oct, 2012 11 commits
  4. 28 Oct, 2012 2 commits
  5. 27 Oct, 2012 1 commit
  6. 26 Oct, 2012 1 commit
    • Ian Lance Taylor's avatar
      syscall: fix creds_test to reliably close os.File · 5611e8b5
      Ian Lance Taylor authored
      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
      
      R=golang-dev, rsc
      CC=golang-dev
      https://golang.org/cl/6776053
      5611e8b5