From 63a557575377fdc26867b989c1817ea59c7c0480 Mon Sep 17 00:00:00 2001 From: Roberto Scolaro Date: Sat, 21 Sep 2024 00:37:09 +0000 Subject: [PATCH] wip Signed-off-by: Roberto Scolaro --- test/libsinsp_e2e/event_capture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/libsinsp_e2e/event_capture.cpp b/test/libsinsp_e2e/event_capture.cpp index 943050ff50..7d6a06cc06 100644 --- a/test/libsinsp_e2e/event_capture.cpp +++ b/test/libsinsp_e2e/event_capture.cpp @@ -116,7 +116,7 @@ void event_capture::capture() { next_result = get_inspector()->next(&event); } if(next_result == SCAP_SUCCESS) { - if((event->get_type() == PPME_SYSCALL_KILL_E || event->get_type() == PPME_SYSCALL_KILL_X) && event->get_param(1)->as() == -1) { + if(event->get_type() == PPME_SYSCALL_KILL_E && event->get_param(1)->as() == -1) { end_event = true; if(m_capture_stopped) { break;