]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
tests: avoid false failure with perl-IO-Tty >= 1.24 master
authorPádraig Brady <P@draigBrady.com>
Mon, 27 Apr 2026 10:14:51 +0000 (11:14 +0100)
committerPádraig Brady <P@draigBrady.com>
Mon, 27 Apr 2026 10:15:44 +0000 (11:15 +0100)
* tests/misc/tty-eof.pl: https://bugzilla.redhat.com/2463168

tests/misc/tty-eof.pl

index d21e2ea02ca392071b5370d2507ef813e806b488..3f5abbe9851f3b23c8f648b17b252299f8ae7611 100755 (executable)
@@ -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)