mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 13:08:07 -05:00
Merge pull request #75 from brittinator/master
Regex captures benchmarks with or without CPU suffix
This commit is contained in:
commit
d0a98937db
@ -1174,6 +1174,44 @@ var testCases = []TestCase{
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "28-bench-1cpu.txt",
|
||||
reportName: "28-report.xml",
|
||||
report: &parser.Report{
|
||||
Packages: []parser.Package{
|
||||
{
|
||||
Name: "single/cpu",
|
||||
Duration: 9467 * time.Millisecond,
|
||||
Time: 9467,
|
||||
Benchmarks: []*parser.Benchmark{
|
||||
{
|
||||
Name: "BenchmarkRing",
|
||||
Duration: 74 * time.Nanosecond,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "29-bench-16cpu.txt",
|
||||
reportName: "29-report.xml",
|
||||
report: &parser.Report{
|
||||
Packages: []parser.Package{
|
||||
{
|
||||
Name: "sixteen/cpu",
|
||||
Duration: 1522 * time.Millisecond,
|
||||
Time: 1522,
|
||||
Benchmarks: []*parser.Benchmark{
|
||||
{
|
||||
Name: "BenchmarkRingaround",
|
||||
Duration: 13571 * time.Nanosecond,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
func TestParser(t *testing.T) {
|
||||
|
@ -62,7 +62,7 @@ var (
|
||||
regexCoverage = regexp.MustCompile(`^coverage:\s+(\d+\.\d+)%\s+of\s+statements(?:\sin\s.+)?$`)
|
||||
regexResult = regexp.MustCompile(`^(ok|FAIL)\s+([^ ]+)\s+(?:(\d+\.\d+)s|\(cached\)|(\[\w+ failed]))(?:\s+coverage:\s+(\d+\.\d+)%\sof\sstatements(?:\sin\s.+)?)?$`)
|
||||
// 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+(\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)?`)
|
||||
regexOutput = regexp.MustCompile(`( )*\t(.*)`)
|
||||
regexSummary = regexp.MustCompile(`^(PASS|FAIL|SKIP)$`)
|
||||
)
|
||||
|
4
testdata/28-bench-1cpu.txt
vendored
Normal file
4
testdata/28-bench-1cpu.txt
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
pkg: single/cpu
|
||||
BenchmarkRing 20000000 74.2 ns/op
|
||||
PASS
|
||||
ok single/cpu 9.467s
|
9
testdata/28-report.xml
vendored
Normal file
9
testdata/28-report.xml
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuite tests="1" failures="0" time="9.467" name="single/cpu">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
<testcase classname="cpu" name="BenchmarkRing" time="0.000000074"></testcase>
|
||||
</testsuite>
|
||||
</testsuites>
|
4
testdata/29-bench-16cpu.txt
vendored
Normal file
4
testdata/29-bench-16cpu.txt
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
pkg: sixteen/cpu
|
||||
BenchmarkRingaround-16 100000 13571 ns/op
|
||||
PASS
|
||||
ok sixteen/cpu 1.522s
|
9
testdata/29-report.xml
vendored
Normal file
9
testdata/29-report.xml
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuite tests="1" failures="0" time="1.522" name="sixteen/cpu">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
<testcase classname="cpu" name="BenchmarkRingaround" time="0.000013571"></testcase>
|
||||
</testsuite>
|
||||
</testsuites>
|
Loading…
x
Reference in New Issue
Block a user