From 0f85d79ed60de25b7530af7bbf1a97523fbbfca2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?P=C3=A1draig=20Brady?= Date: Mon, 27 Apr 2026 11:14:51 +0100 Subject: [PATCH] tests: avoid false failure with perl-IO-Tty >= 1.24 * tests/misc/tty-eof.pl: https://bugzilla.redhat.com/2463168 --- tests/misc/tty-eof.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/misc/tty-eof.pl b/tests/misc/tty-eof.pl index d21e2ea02c..3f5abbe985 100755 --- a/tests/misc/tty-eof.pl +++ b/tests/misc/tty-eof.pl @@ -121,7 +121,8 @@ normalize_tty_output ($) $exp->spawn("$cmd 2> $stderr") or (warn "$ME: cannot run '$cmd' ($mode): $!\n"), $fail=1, next; - set_tty_eof_char ($exp->slave, $eof_char); + # Fails on perl-IO-Tty >= 1.24 https://bugzilla.redhat.com/2463168 + # set_tty_eof_char ($exp->slave, $eof_char); my $input = "a b\n"; if ($with_input) -- 2.47.3