diff options
| -rw-r--r-- | tests/matrix/matrix_test.go | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/tests/matrix/matrix_test.go b/tests/matrix/matrix_test.go index ebca867..46ffbcb 100644 --- a/tests/matrix/matrix_test.go +++ b/tests/matrix/matrix_test.go @@ -595,6 +595,10 @@ func TestUtimesNano(t *testing.T) {  		t.Fatal(err)  	}  	if st.Atim != ts[0] { +		if st.Atim.Nsec == 0 { +			// TODO remove this once the pull request is merged +			t.Skip("Known limitation, https://github.com/hanwen/go-fuse/pull/131") +		}  		t.Errorf("Wrong atime: %v, want: %v", st.Atim, ts[0])  	}  	if st.Mtim != ts[1] { @@ -648,6 +652,10 @@ func TestUtimesNanoFd(t *testing.T) {  		t.Fatal(err)  	}  	if st.Atim != ts[0] { +		if st.Atim.Nsec == 0 { +			// TODO remove this once the pull request is merged +			t.Skip("Known limitation, https://github.com/hanwen/go-fuse/pull/131") +		}  		t.Errorf("Wrong atime: %v, want: %v", st.Atim, ts[0])  	}  	if st.Mtim != ts[1] { | 
