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