This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Test that entries in %^H are actually independant.
[perl5.git] / t / comp / cpp.t
1 #!./perl
2
3 BEGIN {
4     chdir 't' if -d 't';
5     @INC = '../lib';
6     $ENV{PERL5LIB} = '../lib';
7 }
8
9 use Config;
10 if ( $^O eq 'MacOS' ||
11      ($Config{'cppstdin'} =~ /\bcppstdin\b/) &&
12      ! -x $Config{'binexp'} . "/cppstdin" ) {
13     print "1..0 # Skip: \$Config{cppstdin} unavailable\n";
14     exit;               # Cannot test till after install, alas.
15 }
16
17 system qq{$^X -"P" "comp/cpp.aux"};