mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-10 14:34:24 +08:00
Skip ipns_test.TestMultiWrite in darwin
This commit is contained in:
@ -5,6 +5,8 @@ import (
|
|||||||
"crypto/rand"
|
"crypto/rand"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
|
"runtime"
|
||||||
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -298,6 +300,11 @@ func TestFastRepublish(t *testing.T) {
|
|||||||
|
|
||||||
// Test writing a medium sized file one byte at a time
|
// Test writing a medium sized file one byte at a time
|
||||||
func TestMultiWrite(t *testing.T) {
|
func TestMultiWrite(t *testing.T) {
|
||||||
|
if runtime.GOOS == "darwin" {
|
||||||
|
link := "https://github.com/jbenet/go-ipfs/issues/147"
|
||||||
|
t.Skipf("Skipping as is broken in OSX. See %s", link)
|
||||||
|
}
|
||||||
|
|
||||||
_, mnt := setupIpnsTest(t, nil)
|
_, mnt := setupIpnsTest(t, nil)
|
||||||
defer mnt.Close()
|
defer mnt.Close()
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user