summaryrefslogtreecommitdiff
path: root/t/comp/cpp.aux
blob: 058903294ee9703b871848ba6eb6ca5d0d7e72a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!./perl -l

# There's a bug in -P where the #! line is ignored.  If this test
# suddenly starts printing blank lines that bug has been fixed.

print "1..3\n";

#define MESS "ok 1\n"
print MESS;

#ifdef MESS
	print "ok 2\n";
#else
	print "not ok 2\n";
#endif

open(TRY,">Comp_cpp.tmp") || die "Can't open temp perl file: $!";

($prog = <<'END') =~ s/X//g;
X$ok = "not ok 3\n";
X#include "Comp_cpp.inc"
X#ifdef OK
X$ok = OK;
X#endif
Xprint $ok;
END
print TRY $prog;
close TRY;

open(TRY,">Comp_cpp.inc") || (die "Can't open temp include file: $!");
print TRY '#define OK "ok 3\n"' . "\n";
close TRY;

print `$^X "-P" Comp_cpp.tmp`;
unlink "Comp_cpp.tmp", "Comp_cpp.inc";