1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-03-06 21:12:38 +02:00
Files
coreutils/tests/misc/cat-tty-eof
2002-12-14 17:21:04 +00:00

36 lines
684 B
Bash
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/sh
: ${PERL=perl}
case "$PERL" in
*'missing perl')
echo 1>&2 "$0: configure didn't find a usable version of Perl, so can't run thi
s test"
exit 77
;;
esac
exec $PERL -w -- - <<\EOF
# Ensure that cat exits upon a single EOF (^D) from a tty.
use strict;
(my $ME = $0) =~ s|.*/||;
eval { require Expect };
$@ and (warn "$ME: this script requires Perl's Expect package\n"), exit 77;
{
my $exp = new Expect;
# $exp->log_user(0);
$exp->spawn('cat')
or die "$ME: cannot run `cat': $!\n";
$exp->send('');
!defined $exp->exitstatus || $exp->exitstatus
or die "$ME: cat didn't exit after ^D from standard input\n";
$exp->hard_close();
exit 0
}
EOF