From 9af8bb28329d96672c824db0e2e635b5c5532aed Mon Sep 17 00:00:00 2001 From: Timothy Sample Date: Thu, 16 May 2019 20:55:42 -0400 Subject: [PATCH] Remove 'setvbuf' in string port redirect test. This was only relevant to an older implementation of redirects, and does not make much sense for us now. * tests/unit/shell.scm (Redirects here-document to standard input): Remove call to 'setvbuf'. --- tests/unit/shell.scm | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/unit/shell.scm b/tests/unit/shell.scm index 3042198..7f89e02 100644 --- a/tests/unit/shell.scm +++ b/tests/unit/shell.scm @@ -277,7 +277,6 @@ "foo\n" (with-input-from-string "bar\n" (lambda () - (setvbuf (current-input-port) 'none) (with-output-to-string (lambda () (sh:with-redirects '((<< 0 "foo\n"))