mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-04 20:50:14 -05:00
parser/gotest: Move const declaration to top of file
This commit is contained in:
parent
3d712f2417
commit
80a51f2ed0
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user