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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
#!/usr/bin/perl
BEGIN {
if ($ENV{PERL_CORE}) {
chdir 't' if -d 't';
chdir '../lib/ExtUtils/ParseXS'
or die "Can't chdir to lib/ExtUtils/ParseXS: $!";
@INC = qw(../.. ../../.. .);
}
}
use strict;
use Test::More;
use Config;
use DynaLoader;
use ExtUtils::CBuilder;
plan tests => 10;
my ($source_file, $obj_file, $lib_file);
require_ok( 'ExtUtils::ParseXS' );
ExtUtils::ParseXS->import('process_file');
chdir 't' or die "Can't chdir to t/, $!";
use Carp; $SIG{__WARN__} = \&Carp::cluck;
#########################
# Try sending to filehandle
tie *FH, 'Foo';
process_file( filename => 'XSTest.xs', output => \*FH, prototypes => 1 );
like tied(*FH)->content, '/is_even/', "Test that output contains some text";
$source_file = 'XSTest.c';
# Try sending to file
process_file(filename => 'XSTest.xs', output => $source_file, prototypes => 0);
ok -e $source_file, "Create an output file";
my $quiet = $ENV{PERL_CORE} && !$ENV{HARNESS_ACTIVE};
my $b = ExtUtils::CBuilder->new(quiet => $quiet);
SKIP: {
skip "no compiler available", 2
if ! $b->have_compiler;
$obj_file = $b->compile( source => $source_file );
ok $obj_file;
ok -e $obj_file, "Make sure $obj_file exists";
}
SKIP: {
skip "no dynamic loading", 5
if !$b->have_compiler || !$Config{usedl};
my $module = 'XSTest';
$lib_file = $b->link( objects => $obj_file, module_name => $module );
ok $lib_file;
ok -e $lib_file, "Make sure $lib_file exists";
eval {require XSTest};
is $@, '';
ok XSTest::is_even(8);
ok !XSTest::is_even(9);
# Win32 needs to close the DLL before it can unlink it, but unfortunately
# dl_unload_file was missing on Win32 prior to perl change #24679!
if ($^O eq 'MSWin32' and defined &DynaLoader::dl_unload_file) {
for (my $i = 0; $i < @DynaLoader::dl_modules; $i++) {
if ($DynaLoader::dl_modules[$i] eq $module) {
DynaLoader::dl_unload_file($DynaLoader::dl_librefs[$i]);
last;
}
}
}
}
unless ($ENV{PERL_NO_CLEANUP}) {
for ( $obj_file, $lib_file, $source_file) {
next unless defined $_;
1 while unlink $_;
}
}
#####################################################################
sub Foo::TIEHANDLE { bless {}, 'Foo' }
sub Foo::PRINT { shift->{buf} .= join '', @_ }
sub Foo::content { shift->{buf} }
|