Skip to content

Commit

Permalink
fix(test/libsinsp_e2e): solve compilation issues
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Dellaluce <[email protected]>
  • Loading branch information
jasondellaluce authored and poiana committed Feb 22, 2024
1 parent 938be90 commit f2eabad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/libsinsp_e2e/sys_call_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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); };
Expand Down

0 comments on commit f2eabad

Please sign in to comment.