This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
eliminate HINT_HH_FOR_EVAL
[perl5.git] / t / comp / cpp.t
... / ...
CommitLineData
1#!./perl
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
6 $ENV{PERL5LIB} = '../lib';
7}
8
9use Config;
10if ( $^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
17system qq{$^X -"P" "comp/cpp.aux"};