mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
parser/gotest: Add test 23
This commit is contained in:
parent
c03c92d418
commit
e33490229b
@ -15,7 +15,7 @@ import (
|
|||||||
|
|
||||||
var (
|
var (
|
||||||
// regexBenchmark captures 3-5 groups: benchmark name, number of times ran, ns/op (with or without decimal), B/op (optional), and allocs/op (optional).
|
// regexBenchmark captures 3-5 groups: benchmark name, number of times ran, ns/op (with or without decimal), B/op (optional), and allocs/op (optional).
|
||||||
regexBenchmark = regexp.MustCompile(`^(Benchmark[^ -]+)(?:-\d+\s+|\s+)(\d+)\s+(\d+|\d+\.\d+)\sns\/op(?:\s+(\d+)\sB\/op)?(?:\s+(\d+)\\sallocs/op)?`)
|
regexBenchmark = regexp.MustCompile(`^(Benchmark[^ -]+)(?:-\d+\s+|\s+)(\d+)\s+(\d+|\d+\.\d+)\sns\/op(?:\s+(\d+)\sB\/op)?(?:\s+(\d+)\sallocs/op)?`)
|
||||||
regexCoverage = regexp.MustCompile(`^coverage:\s+(\d+|\d+\.\d+)%\s+of\s+statements(?:\sin\s(.+))?$`)
|
regexCoverage = regexp.MustCompile(`^coverage:\s+(\d+|\d+\.\d+)%\s+of\s+statements(?:\sin\s(.+))?$`)
|
||||||
regexEndTest = regexp.MustCompile(`((?: )*)--- (PASS|FAIL|SKIP): ([^ ]+) \((\d+\.\d+)(?: seconds|s)\)`)
|
regexEndTest = regexp.MustCompile(`((?: )*)--- (PASS|FAIL|SKIP): ([^ ]+) \((\d+\.\d+)(?: seconds|s)\)`)
|
||||||
regexStatus = regexp.MustCompile(`^(PASS|FAIL|SKIP)$`)
|
regexStatus = regexp.MustCompile(`^(PASS|FAIL|SKIP)$`)
|
||||||
|
@ -342,7 +342,16 @@ var tests = []struct {
|
|||||||
{Type: "status", Result: "PASS"},
|
{Type: "status", Result: "PASS"},
|
||||||
{Type: "summary", Result: "ok", Name: "package/basic", Duration: 3212 * time.Millisecond},
|
{Type: "summary", Result: "ok", Name: "package/basic", Duration: 3212 * time.Millisecond},
|
||||||
}},
|
}},
|
||||||
{"23-benchmem", []gtr.Event{}},
|
{"23-benchmem",
|
||||||
|
[]gtr.Event{
|
||||||
|
{Type: "output", Data: "goos: darwin"},
|
||||||
|
{Type: "output", Data: "goarch: amd64"},
|
||||||
|
{Type: "output", Data: "pkg: code.internal/state"},
|
||||||
|
{Type: "benchmark", Name: "BenchmarkIpsHistoryInsert", Iterations: 30000, NsPerOp: 52568, BytesPerOp: 24879, AllocsPerOp: 494},
|
||||||
|
{Type: "benchmark", Name: "BenchmarkIpsHistoryLookup", Iterations: 100000, NsPerOp: 15208, BytesPerOp: 7369, AllocsPerOp: 143},
|
||||||
|
{Type: "status", Result: "PASS"},
|
||||||
|
{Type: "summary", Result: "ok", Name: "package/one", Duration: 9415 * time.Millisecond},
|
||||||
|
}},
|
||||||
{"24-benchtests", []gtr.Event{}},
|
{"24-benchtests", []gtr.Event{}},
|
||||||
{"25-benchcount", []gtr.Event{}},
|
{"25-benchcount", []gtr.Event{}},
|
||||||
{"26-testbenchmultiple", []gtr.Event{}},
|
{"26-testbenchmultiple", []gtr.Event{}},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user