Skip to content

Commit

Permalink
commit the glob ctests
Browse files Browse the repository at this point in the history
  • Loading branch information
richardlehane committed Jun 2, 2023
1 parent 0c93e4f commit e40b65f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions internal/containermatcher/container.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,12 +124,19 @@ func (m Matcher) addSigs(i int, nameParts [][]string, sigParts [][]frames.Signat
return err
}
}
// commit all the ctests
for _, v := range m[i].nameCTest {
err = v.commit()
if err != nil {
return err
}
}
for _, v := range m[i].globCtests {
err = v.commit()
if err != nil {
return err
}
}
m[i].priorities.Add(l, len(nameParts), 0, 0)
return nil
}
Expand Down

0 comments on commit e40b65f

Please sign in to comment.