Change 12010 by jhi@alpha on 2001/09/13 12:44:28
Skip the test if not running on a tty.
Affected files ...
... //depot/perl/lib/Term/Complete.t#2 edit
Differences ...
==== //depot/perl/lib/Term/Complete.t#2 (text) ====
Index: perl/lib/Term/Complete.t
--- perl/lib/Term/Complete.t.~1~ Thu Sep 13 07:00:05 2001
+++ perl/lib/Term/Complete.t Thu Sep 13 07:00:05 2001
@@ -1,6 +1,7 @@
#!./perl
BEGIN {
+ print "1..0 # Skip: not a tty\n" unless -t STDOUT;
chdir 't' unless -d 't';
@INC = '../lib';
}
End of Patch.