tests: darwin: ignore error in TestMvWarningSymlink

https://github.com/rfjakob/gocryptfs/issues/349
This commit is contained in:
Jakob Unterwurzacher 2019-01-20 17:20:30 +01:00
parent b08cbce5c1
commit da3ba5e7f5
1 changed files with 3 additions and 0 deletions

View File

@ -232,6 +232,9 @@ func TestMvWarningSymlink(t *testing.T) {
out, err := cmd.CombinedOutput()
if err != nil {
t.Log(string(out))
if runtime.GOOS == "darwin" {
t.Skip("mv on darwin chokes on broken symlinks, see https://github.com/rfjakob/gocryptfs/issues/349")
}
t.Fatal(err)
}
if len(out) != 0 {