Package: golang-github-miekg-dns / 0.0~git20161018.0.58f52c5-1

disable-network-tests.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
Description: Disable network tests
 Network access is disabled for builds performed with pbduiler or
 Debian buildd.  Disable tests that access the network so the package
 builds successfully in these environments.
Author: Tim Potter <tpot@hpe.com>
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: golang-dns/remote_test.go
===================================================================
--- golang-dns.orig/remote_test.go
+++ /dev/null
@@ -1,19 +0,0 @@
-package dns
-
-import "testing"
-
-const LinodeAddr = "176.58.119.54:53"
-
-func TestClientRemote(t *testing.T) {
-	m := new(Msg)
-	m.SetQuestion("go.dns.miek.nl.", TypeTXT)
-
-	c := new(Client)
-	r, _, err := c.Exchange(m, LinodeAddr)
-	if err != nil {
-		t.Errorf("failed to exchange: %v", err)
-	}
-	if r != nil && r.Rcode != RcodeSuccess {
-		t.Errorf("failed to get an valid answer\n%v", r)
-	}
-}
Index: golang-dns/issue_test.go
===================================================================
--- golang-dns.orig/issue_test.go
+++ /dev/null
@@ -1,23 +0,0 @@
-package dns
-
-// Tests that solve that an specific issue.
-
-import "testing"
-
-func TestTCPRtt(t *testing.T) {
-	m := new(Msg)
-	m.RecursionDesired = true
-	m.SetQuestion("example.org.", TypeA)
-
-	c := &Client{}
-	for _, proto := range []string{"udp", "tcp"} {
-		c.Net = proto
-		_, rtt, err := c.Exchange(m, "8.8.4.4:53")
-		if err != nil {
-			t.Fatal(err)
-		}
-		if rtt == 0 {
-			t.Fatalf("expecting non zero rtt %s, got zero", c.Net)
-		}
-	}
-}