From 48d3d17d479a0bee6b87403404150f8e49eac8d6 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Fri, 19 Jul 2019 20:39:53 +0200 Subject: [PATCH] strace: switch from deprecated -F to -fvy --- testcases/lib/SocketActivation.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testcases/lib/SocketActivation.pm b/testcases/lib/SocketActivation.pm index 5a5a4484..a2db5453 100644 --- a/testcases/lib/SocketActivation.pm +++ b/testcases/lib/SocketActivation.pm @@ -135,7 +135,7 @@ sub activate_i3 { # We overwrite LISTEN_PID with the correct process ID to make # socket activation work (LISTEN_PID has to match getpid(), # otherwise the LISTEN_FDS will be treated as a left-over). - $cmd = qq|strace -fF -s2048 -v -o "$out" -- | . + $cmd = qq|strace -fvy -s2048 -o "$out" -- | . 'sh -c "export LISTEN_PID=\$\$; ' . $cmd . '"'; }