mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-04 20:50:14 -05:00
Add test for benchmarks with MB/s
This commit is contained in:
parent
d5de2960fd
commit
2a37e36ac6
@ -1535,6 +1535,29 @@ var testCases = []TestCase{
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "33-bench-mb.txt",
|
||||
reportName: "33-report.xml",
|
||||
report: &parser.Report{
|
||||
Packages: []parser.Package{
|
||||
{
|
||||
Name: "compress/flate",
|
||||
Duration: 83202 * time.Millisecond,
|
||||
Time: 83202,
|
||||
Benchmarks: []*parser.Benchmark{
|
||||
{
|
||||
Name: "BenchmarkDecode/Digits/Huffman/1e4",
|
||||
Duration: 104427 * time.Nanosecond,
|
||||
},
|
||||
{
|
||||
Name: "BenchmarkEncode/Digits/Huffman/1e4",
|
||||
Duration: 28334 * time.Nanosecond,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
func TestParser(t *testing.T) {
|
||||
|
7
testdata/33-bench-mb.txt
vendored
Normal file
7
testdata/33-bench-mb.txt
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
goos: linux
|
||||
goarch: amd64
|
||||
pkg: compress/flate
|
||||
BenchmarkDecode/Digits/Huffman/1e4-8 10000 104427 ns/op 95.76 MB/s 40629 B/op 5 allocs/op
|
||||
BenchmarkEncode/Digits/Huffman/1e4-8 50000 28334 ns/op 352.93 MB/s
|
||||
PASS
|
||||
ok compress/flate 83.202s
|
10
testdata/33-report.xml
vendored
Normal file
10
testdata/33-report.xml
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuite tests="2" failures="0" time="83.202" name="compress/flate">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
</properties>
|
||||
<testcase classname="flate" name="BenchmarkDecode/Digits/Huffman/1e4" time="0.000104427"></testcase>
|
||||
<testcase classname="flate" name="BenchmarkEncode/Digits/Huffman/1e4" time="0.000028334"></testcase>
|
||||
</testsuite>
|
||||
</testsuites>
|
Loading…
x
Reference in New Issue
Block a user