Remove debug

This commit is contained in:
Leonid Bugaev
2016-05-31 20:57:19 +05:00
parent 0f5b509397
commit ecfd8549a6
2 changed files with 1 additions and 3 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ race:
$(RUN) go test ./... $(ARGS) -v -race -timeout 15s
test:
$(RUN) go test ./. -race -timeout 60s $(LDFLAGS) $(ARGS) -v
$(RUN) go test ./. -timeout 60s $(LDFLAGS) $(ARGS) -v
test_all:
$(RUN) go test ./... -timeout 60s $(LDFLAGS) $(ARGS) -v
-2
View File
@@ -3,7 +3,6 @@ package main
import (
"fmt"
"io"
"log"
"os"
"sync"
"sync/atomic"
@@ -39,7 +38,6 @@ func TestFileOutput(t *testing.T) {
input2 := NewFileInput("/tmp/test_requests.gor")
output2 := NewTestOutput(func(data []byte) {
atomic.AddInt64(&counter, 1)
log.Println(counter)
wg.Done()
})