mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -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"
|
"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 (
|
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).
|
// 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[^ -]+)$`)
|
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.
|
// Parser is a Go test output Parser.
|
||||||
type Parser struct {
|
type Parser struct {
|
||||||
packageName string
|
packageName string
|
||||||
|
Loading…
x
Reference in New Issue
Block a user