parser/gotest: Move const declaration to top of file

This commit is contained in:
Joël Stemmer 2022-07-18 22:37:49 +01:00
parent 3d712f2417
commit 80a51f2ed0

View File

@ -14,6 +14,12 @@ import (
"github.com/jstemmer/go-junit-report/v2/gtr"
)
const (
// maxLineSize is the maximum amount of bytes we'll read for a single line.
// Lines longer than maxLineSize will be truncated.
maxLineSize = 4 * 1024 * 1024
)
var (
// regexBenchInfo captures 3-5 groups: benchmark name, number of times ran, ns/op (with or without decimal), MB/sec (optional), B/op (optional), and allocs/op (optional).
regexBenchmark = regexp.MustCompile(`^(Benchmark[^ -]+)$`)
@ -102,12 +108,6 @@ func SetSubtestMode(mode SubtestMode) Option {
}
}
const (
// maxLineSize is the maximum amount of bytes we'll read for a single line.
// Lines longer than maxLineSize will be truncated.
maxLineSize = 4 * 1024 * 1024
)
// Parser is a Go test output Parser.
type Parser struct {
packageName string