From 33db002464e0933ae09292314eaa8bd3f37cb3b1 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sun, 22 Mar 2026 19:03:10 +0000 Subject: [PATCH] Remove direct use of /bin/sh in backtrace tests --- tests/backtraces.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/backtraces.scm b/tests/backtraces.scm index c5f8e0e..590ab3e 100644 --- a/tests/backtraces.scm +++ b/tests/backtraces.scm @@ -5,9 +5,8 @@ (ice-9 match)) (define (run-backtrace-script file) - (let* ((pipe (open-pipe* OPEN_READ - "/bin/sh" "-c" - (string-append "./test-env guile " file " 2>&1"))) + (let* ((pipe (open-pipe (string-append "./test-env guile " file " 2>&1") + OPEN_READ)) (output (read-string pipe))) (close-pipe pipe) output))