Browse Source

Merge pull request #1651 from jonboulle/discard

etcdserver: discard log output in tests
Jonathan Boulle 11 years ago
parent
commit
32a82bb423
1 changed files with 6 additions and 0 deletions
  1. 6 0
      etcdserver/server_test.go

+ 6 - 0
etcdserver/server_test.go

@@ -19,6 +19,8 @@ package etcdserver
 import (
 import (
 	"encoding/json"
 	"encoding/json"
 	"fmt"
 	"fmt"
+	"io/ioutil"
+	"log"
 	"math/rand"
 	"math/rand"
 	"path"
 	"path"
 	"reflect"
 	"reflect"
@@ -36,6 +38,10 @@ import (
 	"github.com/coreos/etcd/store"
 	"github.com/coreos/etcd/store"
 )
 )
 
 
+func init() {
+	log.SetOutput(ioutil.Discard)
+}
+
 func TestGetExpirationTime(t *testing.T) {
 func TestGetExpirationTime(t *testing.T) {
 	tests := []struct {
 	tests := []struct {
 		r    pb.Request
 		r    pb.Request