From a7e2c145299b628a5bef4a797c8158b42ac2c930 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Tue, 21 Apr 2026 16:21:29 +0200 Subject: [PATCH] don't redirect fail client output to /dev/null --- scripts/runner.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/runner.pl b/scripts/runner.pl index bef6092..78fc868 100644 --- a/scripts/runner.pl +++ b/scripts/runner.pl @@ -211,7 +211,8 @@ sub inject { "-Wf,--ok-marker=fail_marker_positive", "-Wf,--fail-marker=fail_marker_negative", "-Wf,--detected-marker=fail_marker_detected", - ">/dev/null" + + # ">/dev/null" ) ) == 0 or die "client failed: $?";