chore: bump libs/driver to pre-release tag

Signed-off-by: Andrea Terzolo <andrea.terzolo@polito.it>
This commit is contained in:
Andrea Terzolo 2022-10-04 09:07:58 +00:00 committed by poiana
parent 663c1d073a
commit ec7ddbbaf8
3 changed files with 12 additions and 4 deletions

View File

@ -26,8 +26,8 @@ else()
# In case you want to test against another driver version (or branch, or commit) just pass the variable -
# ie., `cmake -DDRIVER_VERSION=dev ..`
if(NOT DRIVER_VERSION)
set(DRIVER_VERSION "0c280ca6847d7fbb616f152bb6cffd5b4d74452d")
set(DRIVER_CHECKSUM "SHA256=63577357e43cade45e76fb5f4522493195dcde1a6cfed3768ba5d51a67ab50ab")
set(DRIVER_VERSION "0c46d86160e663e31b28b006270120245bb74c9a")
set(DRIVER_CHECKSUM "SHA256=15e13f8242ed2a5525a0a451f529464f09191625b9bfb1cfd3a8602217cb3265")
endif()
# cd /path/to/build && cmake /path/to/source

View File

@ -27,8 +27,8 @@ else()
# In case you want to test against another falcosecurity/libs version (or branch, or commit) just pass the variable -
# ie., `cmake -DFALCOSECURITY_LIBS_VERSION=dev ..`
if(NOT FALCOSECURITY_LIBS_VERSION)
set(FALCOSECURITY_LIBS_VERSION "0c280ca6847d7fbb616f152bb6cffd5b4d74452d")
set(FALCOSECURITY_LIBS_CHECKSUM "SHA256=63577357e43cade45e76fb5f4522493195dcde1a6cfed3768ba5d51a67ab50ab")
set(FALCOSECURITY_LIBS_VERSION "0c46d86160e663e31b28b006270120245bb74c9a")
set(FALCOSECURITY_LIBS_CHECKSUM "SHA256=15e13f8242ed2a5525a0a451f529464f09191625b9bfb1cfd3a8602217cb3265")
endif()
# cd /path/to/build && cmake /path/to/source

View File

@ -67,6 +67,14 @@ void application::check_for_ignored_events()
continue;
}
/* If the event is not generated by the running system we don't print
* any warning right now.
*/
if(!sinsp::is_generable_event(it))
{
continue;
}
/* If the event is not in this set it is not considered by Falco. */
if(interesting_events.find(it) == interesting_events.end())
{