Переглянути джерело

skip DNS tests on windows

Darien Raymond 7 роки тому
батько
коміт
f9436b3556
1 змінених файлів з 7 додано та 0 видалено
  1. 7 0
      app/dns/server_test.go

+ 7 - 0
app/dns/server_test.go

@@ -1,6 +1,7 @@
 package dns_test
 
 import (
+	"runtime"
 	"testing"
 	"time"
 
@@ -38,6 +39,9 @@ func (*staticHandler) ServeDNS(w dns.ResponseWriter, r *dns.Msg) {
 }
 
 func TestUDPServer(t *testing.T) {
+	if runtime.GOOS == "windows" {
+		t.Skip("doesn't work on Windows due to miekg/dns changes.")
+	}
 	assert := With(t)
 
 	port := udp.PickPort()
@@ -102,6 +106,9 @@ func TestUDPServer(t *testing.T) {
 }
 
 func TestPrioritizedDomain(t *testing.T) {
+	if runtime.GOOS == "windows" {
+		t.Skip("doesn't work on Windows due to miekg/dns changes.")
+	}
 	assert := With(t)
 
 	port := udp.PickPort()