From f2eabad40d2b3bd74c63743ed7f7a020c85f3aaa Mon Sep 17 00:00:00 2001 From: Jason Dellaluce Date: Wed, 21 Feb 2024 16:17:17 +0000 Subject: [PATCH] fix(test/libsinsp_e2e): solve compilation issues Signed-off-by: Jason Dellaluce --- test/libsinsp_e2e/sys_call_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/libsinsp_e2e/sys_call_test.cpp b/test/libsinsp_e2e/sys_call_test.cpp index e1e98239a4..872dc94077 100644 --- a/test/libsinsp_e2e/sys_call_test.cpp +++ b/test/libsinsp_e2e/sys_call_test.cpp @@ -999,7 +999,7 @@ TEST_F(sys_call_test32, execve_ia32_emulation) { sinsp_filter_compiler compiler(inspector, "evt.type=execve and proc.apid=" + std::to_string(getpid())); - is_subprocess_execve.reset(compiler.compile()); + is_subprocess_execve = compiler.compile(); }; event_filter_t filter = [&](sinsp_evt* evt) { return is_subprocess_execve->run(evt); };