test: update a comment

Signed-off-by: Andrea Terzolo <andrea.terzolo@polito.it>
This commit is contained in:
Andrea Terzolo 2022-08-03 18:16:55 +00:00 committed by poiana
parent 9d443685ea
commit 6b7be38e41

View File

@ -75,8 +75,7 @@ TEST_CASE("Should find event types from filter", "[rule_loader]")
set<uint16_t> no_events;
for(uint32_t i = 2; i < PPM_EVENT_MAX; i++)
{
// Skip "old" event versions that have been replaced
// by newer event versions, or events that are unused.
// Skip events that are unused.
if(g_infotables.m_event_info[i].flags & EF_UNUSED)
{
continue;
@ -233,4 +232,4 @@ TEST_CASE("Should find event types from filter", "[rule_loader]")
auto f = compile("not (not evt.type=openat)");
compare_evttypes(f, openat_only);
}
}
}