From: Jarkko Hietaniemi Date: Thu, 13 Sep 2001 12:44:28 +0000 (+0000) Subject: Skip the test if not running on a tty. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=da78de512ffaf1836cf116b24b428d056b77b8a4;p=p5sagit%2Fp5-mst-13.2.git Skip the test if not running on a tty. p4raw-id: //depot/perl@12010 --- diff --git a/lib/Term/Complete.t b/lib/Term/Complete.t index ff62d1d..99f206e 100644 --- a/lib/Term/Complete.t +++ b/lib/Term/Complete.t @@ -1,6 +1,7 @@ #!./perl BEGIN { + print "1..0 # Skip: not a tty\n" unless -t STDOUT; chdir 't' unless -d 't'; @INC = '../lib'; }