1. 24 Aug, 2018 1 commit
  2. 23 Aug, 2018 1 commit
  3. 21 Aug, 2018 2 commits
  4. 20 Aug, 2018 1 commit
  5. 16 Aug, 2018 2 commits
  6. 15 Aug, 2018 1 commit
  7. 14 Aug, 2018 1 commit
  8. 10 Aug, 2018 3 commits
  9. 08 Aug, 2018 3 commits
  10. 07 Aug, 2018 3 commits
  11. 06 Aug, 2018 2 commits
  12. 02 Aug, 2018 1 commit
  13. 01 Aug, 2018 1 commit
  14. 27 Jul, 2018 4 commits
  15. 24 Jul, 2018 1 commit
  16. 15 Jul, 2018 1 commit
  17. 09 Jul, 2018 2 commits
  18. 07 Jul, 2018 1 commit
  19. 06 Jul, 2018 1 commit
  20. 04 Jul, 2018 1 commit
  21. 27 Jun, 2018 1 commit
  22. 26 Jun, 2018 1 commit
  23. 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
  24. 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
  25. 20 Jun, 2018 1 commit
  26. 19 Jun, 2018 2 commits