diff options
author | Larry Wall <lwall@netlabs.com> | 1992-06-08 04:52:53 +0000 |
---|---|---|
committer | Larry Wall <lwall@netlabs.com> | 1992-06-08 04:52:53 +0000 |
commit | 68decaef0a08fcd5db3193f825cfdfc539b67ccb (patch) | |
tree | a16d0390e7acc0fcc16eba0be8259a2214efd9fe /t/comp/cpp.t | |
parent | bf10efe7e35fa48859e575b890018da16608a9d7 (diff) | |
download | perl-68decaef0a08fcd5db3193f825cfdfc539b67ccb.tar.gz |
perl 4.0 patch 22: patch #20, continued
See patch #20.
Diffstat (limited to 't/comp/cpp.t')
-rw-r--r-- | t/comp/cpp.t | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/t/comp/cpp.t b/t/comp/cpp.t index 0e2b6fa681..dca25d358b 100644 --- a/t/comp/cpp.t +++ b/t/comp/cpp.t @@ -1,6 +1,18 @@ #!./perl -P -# $Header: cpp.t,v 4.0 91/03/20 01:50:05 lwall Locked $ +# $RCSfile: cpp.t,v $$Revision: 4.0.1.1 $$Date: 92/06/08 15:42:08 $ + +open(CONFIG,"../config.sh") || die; +while (<CONFIG>) { + if (/^cppstdin/) { + if (/^cppstdin='(.*cppstdin)'/ && ! -e $1) { + print "1..0\n"; + exit; # Can't test till after install, alas. + } + last; + } +} +close CONFIG; print "1..3\n"; |