mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 13:08:07 -05:00
parser/gotest: Skip ID 0 when searching for existing tests or benchmarks
This commit is contained in:
parent
2f7bf7c3bc
commit
d2480a6059
@ -309,7 +309,7 @@ func (b *reportBuilder) findTest(name string) (int, bool) {
|
|||||||
if t, ok := b.tests[b.lastID]; ok && t.Name == name {
|
if t, ok := b.tests[b.lastID]; ok && t.Name == name {
|
||||||
return b.lastID, true
|
return b.lastID, true
|
||||||
}
|
}
|
||||||
for i := b.nextID; i >= 0; i-- {
|
for i := b.nextID; i > 0; i-- {
|
||||||
if test, ok := b.tests[i]; ok && test.Name == name {
|
if test, ok := b.tests[i]; ok && test.Name == name {
|
||||||
return i, true
|
return i, true
|
||||||
}
|
}
|
||||||
@ -347,7 +347,7 @@ func (b *reportBuilder) findBenchmark(name string) (int, bool) {
|
|||||||
if bm, ok := b.benchmarks[b.lastID]; ok && bm.Name == name {
|
if bm, ok := b.benchmarks[b.lastID]; ok && bm.Name == name {
|
||||||
return b.lastID, true
|
return b.lastID, true
|
||||||
}
|
}
|
||||||
for id := len(b.benchmarks); id >= 0; id-- {
|
for id := len(b.benchmarks); id > 0; id-- {
|
||||||
if b.benchmarks[id].Name == name {
|
if b.benchmarks[id].Name == name {
|
||||||
return id, true
|
return id, true
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user