parser/gotest: Skip ID 0 when searching for existing tests or benchmarks

This commit is contained in:
Joël Stemmer 2022-06-07 00:58:39 +01:00
parent 2f7bf7c3bc
commit d2480a6059

View File

@ -309,7 +309,7 @@ func (b *reportBuilder) findTest(name string) (int, bool) {
if t, ok := b.tests[b.lastID]; ok && t.Name == name {
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 {
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 {
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 {
return id, true
}