source: vendor/perl/5.8.8/t/comp/cpp.t

Last change on this file was 3181, checked in by bird, 18 years ago

perl 5.8.8

File size: 442 bytes
Line 
1#!./perl
2
3# $RCSfile: cpp.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:18 $
4
5BEGIN {
6 chdir 't' if -d 't';
7 @INC = '../lib';
8 $ENV{PERL5LIB} = '../lib';
9}
10
11use Config;
12if ( $^O eq 'MacOS' ||
13 ($Config{'cppstdin'} =~ /\bcppstdin\b/) &&
14 ! -x $Config{'binexp'} . "/cppstdin" ) {
15 print "1..0 # Skip: \$Config{cppstdin} unavailable\n";
16 exit; # Cannot test till after install, alas.
17}
18
19system qq{$^X -"P" "comp/cpp.aux"};
Note: See TracBrowser for help on using the repository browser.