diff options
author | Jakob Unterwurzacher | 2017-02-16 19:37:10 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-02-16 19:39:56 +0100 |
commit | 0b19e637c986f602dad95be2570b2bd125677714 (patch) | |
tree | f0aa899e500d53db2a5e6bf4a81a55134139aa84 /tests/matrix/atime_linux.go | |
parent | 8bbc1038fe47a122e4d3854a37e6afe1afdc17bb (diff) |
tests: OSX compat: wrap Stat_t atime extract
Linux has st.Atim, st.Mtim,
OSX hat st.Atimespec, st.Mtimespec.
Reported at https://github.com/rfjakob/gocryptfs/issues/15#issuecomment-279130217
Diffstat (limited to 'tests/matrix/atime_linux.go')
-rw-r--r-- | tests/matrix/atime_linux.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/matrix/atime_linux.go b/tests/matrix/atime_linux.go new file mode 100644 index 0000000..fb7b94f --- /dev/null +++ b/tests/matrix/atime_linux.go @@ -0,0 +1,9 @@ +package matrix + +import ( + "syscall" +) + +func extractAtimeMtime(st syscall.Stat_t) [2]syscall.Timespec { + return [2]syscall.Timespec{st.Atim, st.Mtim} +} |