Remove direct use of /bin/sh in backtrace tests
All checks were successful
/ test (push) Successful in 4s
All checks were successful
/ test (push) Successful in 4s
This commit is contained in:
parent
cfc40069fb
commit
33db002464
1 changed files with 2 additions and 3 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue