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)) (ice-9 match))
(define (run-backtrace-script file) (define (run-backtrace-script file)
(let* ((pipe (open-pipe* OPEN_READ (let* ((pipe (open-pipe (string-append "./test-env guile " file " 2>&1")
"/bin/sh" "-c" OPEN_READ))
(string-append "./test-env guile " file " 2>&1")))
(output (read-string pipe))) (output (read-string pipe)))
(close-pipe pipe) (close-pipe pipe)
output)) output))