From 0c260bae11ec0cb3a08d8cdf792fab642e64ab49 Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Tue, 12 Sep 2017 03:39:34 +0000 Subject: [PATCH] Fix syncproc test to avoid bashism. --- tests/runtime/test-syncproc.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtime/test-syncproc.scm b/tests/runtime/test-syncproc.scm index f525d6b41..45013e426 100644 --- a/tests/runtime/test-syncproc.scm +++ b/tests/runtime/test-syncproc.scm @@ -66,7 +66,7 @@ USA. (let* ((reply (call-with-output-string (lambda (out) (run-shell-command - "if read; then echo \"Lose\"; else echo \"Win\"; fi" + "if read x; then echo \"Lose\"; else echo \"Win\"; fi" 'input #f 'output out))))) (assert-string= reply "Win\n")))) -- 2.25.1