1. 16 Aug, 2018 2 commits
  2. 15 Aug, 2018 1 commit
  3. 14 Aug, 2018 1 commit
  4. 10 Aug, 2018 3 commits
  5. 08 Aug, 2018 3 commits
  6. 07 Aug, 2018 3 commits
  7. 06 Aug, 2018 2 commits
  8. 02 Aug, 2018 1 commit
  9. 01 Aug, 2018 1 commit
  10. 27 Jul, 2018 4 commits
  11. 24 Jul, 2018 1 commit
  12. 15 Jul, 2018 1 commit
  13. 09 Jul, 2018 2 commits
  14. 07 Jul, 2018 1 commit
  15. 06 Jul, 2018 1 commit
  16. 04 Jul, 2018 1 commit
  17. 27 Jun, 2018 1 commit
  18. 26 Jun, 2018 1 commit
  19. 25 Jun, 2018 1 commit
    • Tobias Klauser's avatar
      unix: don't check atime in TestUtimesNanoAt · a200a19c
      Tobias Klauser authored
      If the underlying filesystem doesn't support atime or was mounted with the
      noatime mount option, TestUtimesNanoAt fails when comparing atime:
      
      --- FAIL: TestUtimesNanoAt (0.00s)
      	syscall_linux_test.go:144: UtimesNanoAt: wrong atime: {1111 0}
      	syscall_linux_test.go:147: UtimesNanoAt: wrong mtime: {3333 0}
      FAIL
      FAIL	golang.org/x/sys/unix	0.376s
      
      Fix it by dropping the atime comparison, it's enough to verify UtimesNanoAt
      working correctly by comparing mtime.
      
      Fixes golang/go#26034
      
      Change-Id: Id868f9d4c6a856a99ae930a46bfe91bd64ca8570
      Reviewed-on: https://go-review.googlesource.com/120562
      Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      a200a19c
  20. 22 Jun, 2018 1 commit
    • Tobias Klauser's avatar
      unix: use private copy of ustat_t on Linux · 63fc586f
      Tobias Klauser authored
      The ustat syscall has been deprecated on Linux for a long time and the
      upcoming glibc 2.28 will remove ustat.h and it can no longer be used to
      to generate the Ustat_t wrapper type. Since Linux still provides the
      syscall, let's not break this functionality and add a private copy of
      struct ustat so Ustat_t can still be generated.
      
      Updates golang/go#25990
      
      Change-Id: I74cf405ce6df92da36f1ee900ab6d98997d8f994
      Reviewed-on: https://go-review.googlesource.com/120295
      Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      63fc586f
  21. 20 Jun, 2018 1 commit
  22. 19 Jun, 2018 2 commits
  23. 16 Jun, 2018 1 commit
    • Alex Brainman's avatar
      windows: replace uintptr in crypto structs · 6c888cc5
      Alex Brainman authored
      This CL is a copy of CL 106275 (see CL 106275 for details).
      
      It introduces CertInfo, CertTrustListInfo and CertRevocationCrlInfo
      types. It uses pointers to new types instead of uintptr in CertContext,
      CertSimpleChain and CertRevocationInfo.
      
      CertRevocationInfo, CertChainPolicyPara and CertChainPolicyStatus types
      have uintptr field that can be pointer to many different things
      (according to Windows API). So this CL introduces Pointer type to be
      used for those cases.
      
      Fixes golang/go#25797
      
      Change-Id: I7797ddc6daf3e67b7eab69ab9fbf4d51650f8b6a
      Reviewed-on: https://go-review.googlesource.com/118797Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      Run-TryBot: Alex Brainman <alex.brainman@gmail.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      6c888cc5
  24. 15 Jun, 2018 1 commit
  25. 14 Jun, 2018 2 commits
  26. 13 Jun, 2018 1 commit