Remove direct use of /bin/sh in backtrace tests
All checks were successful
/ test (push) Successful in 4s

This commit is contained in:
Christopher Baines 2026-03-22 19:03:10 +00:00
parent cfc40069fb
commit 33db002464

View file

@ -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))