Codebase list fever / 6f38d93
new upstream release Sascha Steinbiss 3 years ago
2 changed file(s) with 17 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
0 fever (1.0.10-1) unstable; urgency=medium
1
2 * New upstream release.
3 * Refresh patches as file were renamed.
4
5 -- Sascha Steinbiss <satta@debian.org> Thu, 11 Jun 2020 23:27:19 +0200
6
07 fever (1.0.9-2) unstable; urgency=medium
18
29 * Patch test to be more robust w.r.t. timing.
00 Description: skip tests that need Internet access
11 Author: Sascha Steinbiss <satta@debian.org>
2 --- a/util/hostnamer_test.go
3 +++ b/util/hostnamer_test.go
4 @@ -40,10 +40,12 @@
2 --- a/util/hostnamer_rdns_test.go
3 +++ b/util/hostnamer_rdns_test.go
4 @@ -41,14 +41,17 @@
55 }
66
77 func TestHostNamerQuad8v4(t *testing.T) {
8 + t.Skip("Test skipped as it would need network access")
8 + t.Skip()
99 _TestHostNamerQuad8(t, "8.8.8.8")
1010 }
1111
1212 func TestHostNamerQuad8v6(t *testing.T) {
13 + t.Skip("Test skipped as it would need network access")
13 + t.Skip()
1414 _TestHostNamerQuad8(t, "2001:4860:4860::8888")
1515 }
1616
17 func TestHostNamerInvalid(t *testing.T) {
18 + t.Skip()
19 hn := NewHostNamerRDNS(5*time.Second, 5*time.Second)
20 _, err := hn.GetHostname("8.")
21 if err == nil {