diff options
Diffstat (limited to 'test/auto_test.go')
-rw-r--r-- | test/auto_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/auto_test.go b/test/auto_test.go index c44a2a8c3..7b615765a 100644 --- a/test/auto_test.go +++ b/test/auto_test.go @@ -16,6 +16,7 @@ import ( ) func TestAuto(t *testing.T) { + t.Parallel() tmpdir, err := ioutil.TempDir(os.TempDir(), "coredns") if err != nil { t.Fatal(err) @@ -81,6 +82,7 @@ func TestAuto(t *testing.T) { } func TestAutoNonExistentZone(t *testing.T) { + t.Parallel() tmpdir, err := ioutil.TempDir(os.TempDir(), "coredns") if err != nil { t.Fatal(err) @@ -119,6 +121,7 @@ func TestAutoNonExistentZone(t *testing.T) { } func TestAutoAXFR(t *testing.T) { + t.Parallel() log.SetOutput(ioutil.Discard) tmpdir, err := ioutil.TempDir(os.TempDir(), "coredns") |