deprecate_old() is not public, and only used within toke.c, so can be static.
[p5sagit/p5-mst-13.2.git] / cpan / ExtUtils-ParseXS / t / more.t
CommitLineData
28892255 1#!/usr/bin/perl
2
3use strict;
4use Test::More;
5use Config;
6use DynaLoader;
7use ExtUtils::CBuilder;
8use attributes;
9use overload;
10
11plan tests => 24;
12
13my ($source_file, $obj_file, $lib_file);
14
15require_ok( 'ExtUtils::ParseXS' );
16ExtUtils::ParseXS->import('process_file');
17
18chdir 't' or die "Can't chdir to t/, $!";
19
20use Carp; $SIG{__WARN__} = \&Carp::cluck;
21
22#########################
23
24$source_file = 'XSMore.c';
25
26# Try sending to file
27ExtUtils::ParseXS->process_file(
28 filename => 'XSMore.xs',
29 output => $source_file,
30);
31ok -e $source_file, "Create an output file";
32
33my $quiet = $ENV{PERL_CORE} && !$ENV{HARNESS_ACTIVE};
34my $b = ExtUtils::CBuilder->new(quiet => $quiet);
35
36SKIP: {
37 skip "no compiler available", 2
38 if ! $b->have_compiler;
39 $obj_file = $b->compile( source => $source_file );
40 ok $obj_file;
41 ok -e $obj_file, "Make sure $obj_file exists";
42}
43
44SKIP: {
45 skip "no dynamic loading", 5
46 if !$b->have_compiler || !$Config{usedl};
47 my $module = 'XSMore';
48 $lib_file = $b->link( objects => $obj_file, module_name => $module );
49 ok $lib_file;
50 ok -e $lib_file, "Make sure $lib_file exists";
51
52 eval{
53 package XSMore;
54 our $VERSION = 42;
55 our $boot_ok;
56 DynaLoader::bootstrap_inherit(__PACKAGE__, $VERSION); # VERSIONCHECK disabled
57
58 sub new{ bless {}, shift }
59 };
60 is $@, '';
61 is ExtUtils::ParseXS::errors(), 0, 'ExtUtils::ParseXS::errors()';
62
63 is $XSMore::boot_ok, 100, 'the BOOT keyword';
64
65 ok XSMore::include_ok(), 'the INCLUDE keyword';
66 is prototype(\&XSMore::include_ok), "", 'the PROTOTYPES keyword';
67
68 is prototype(\&XSMore::prototype_ssa), '$$@', 'the PROTOTYPE keyword';
69
70 is_deeply [attributes::get(\&XSMore::attr_method)], [qw(method)], 'the ATTRS keyword';
71 is prototype(\&XSMore::attr_method), '$;@', 'ATTRS with prototype';
72
73 is XSMore::return_1(), 1, 'the CASE keyword (1)';
74 is XSMore::return_2(), 2, 'the CASE keyword (2)';
75 is prototype(\&XSMore::return_1), "", 'ALIAS with prototype (1)';
76 is prototype(\&XSMore::return_2), "", 'ALIAS with prototype (2)';
77
78 is XSMore::arg_init(200), 200, 'argument init';
79
80 ok overload::Overloaded(XSMore->new), 'the FALLBACK keyword';
81 is abs(XSMore->new), 42, 'the OVERLOAD keyword';
82
83 my @a;
84 XSMore::hook(\@a);
85 is_deeply \@a, [qw(INIT CODE POSTCALL CLEANUP)], 'the INIT & POSTCALL & CLEANUP keywords';
86
87 is_deeply [XSMore::outlist()], [ord('a'), ord('b')], 'the OUTLIST keyword';
88
89 is XSMore::len("foo"), 3, 'the length keyword';
90
91 # Win32 needs to close the DLL before it can unlink it, but unfortunately
92 # dl_unload_file was missing on Win32 prior to perl change #24679!
93 if ($^O eq 'MSWin32' and defined &DynaLoader::dl_unload_file) {
94 for (my $i = 0; $i < @DynaLoader::dl_modules; $i++) {
95 if ($DynaLoader::dl_modules[$i] eq $module) {
96 DynaLoader::dl_unload_file($DynaLoader::dl_librefs[$i]);
97 last;
98 }
99 }
100 }
101}
102
103unless ($ENV{PERL_NO_CLEANUP}) {
104 for ( $obj_file, $lib_file, $source_file) {
105 next unless defined $_;
106 1 while unlink $_;
107 }
108}