Short tests

This commit is contained in:
Miek Gieben 2015-01-21 18:26:30 +00:00
parent d344ff065b
commit 2efce5c9e0
1 changed files with 9 additions and 0 deletions

View File

@ -15,6 +15,9 @@ func getIP(s string) string {
}
func TestClientAXFR(t *testing.T) {
if testing.Short() {
return
}
m := new(Msg)
m.SetAxfr("miek.nl.")
@ -41,6 +44,9 @@ func TestClientAXFR(t *testing.T) {
// fails.
func testClientAXFRMultipleEnvelopes(t *testing.T) {
if testing.Short() {
return
}
m := new(Msg)
m.SetAxfr("nlnetlabs.nl.")
@ -63,6 +69,9 @@ func testClientAXFRMultipleEnvelopes(t *testing.T) {
}
func testClientTsigAXFR(t *testing.T) {
if testing.Short() {
return
}
m := new(Msg)
m.SetAxfr("example.nl.")
m.SetTsig("axfr.", HmacMD5, 300, time.Now().Unix())