tests: darwin: ignore error in TestMvWarningSymlink
https://github.com/rfjakob/gocryptfs/issues/349
This commit is contained in:
parent
b08cbce5c1
commit
da3ba5e7f5
@ -232,6 +232,9 @@ func TestMvWarningSymlink(t *testing.T) {
|
|||||||
out, err := cmd.CombinedOutput()
|
out, err := cmd.CombinedOutput()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Log(string(out))
|
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)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
if len(out) != 0 {
|
if len(out) != 0 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user