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
|
#! perl -w
use strict;
use Test::More;
BEGIN {
if ($^O eq 'VMS') {
# So we can get the return value of system()
require vmsish;
import vmsish;
}
}
use ExtUtils::CBuilder;
use File::Spec;
# TEST does not like extraneous output
my $quiet = $ENV{PERL_CORE} && !$ENV{HARNESS_ACTIVE};
my ($source_file, $object_file, $lib_file);
my $b = ExtUtils::CBuilder->new(quiet => $quiet);
# test plan
if ( ! $b->have_cplusplus ) {
plan skip_all => "no compiler available for testing";
}
else {
plan tests => 7;
}
ok $b, "created EU::CB object";
ok $b->have_cplusplus, "have_cplusplus";
$source_file = File::Spec->catfile('t', 'cplust.cc');
{
open my $FH, "> $source_file" or die "Can't create $source_file: $!";
print $FH "class Bogus { public: int boot_cplust() { return 1; } };\n";
close $FH;
}
ok -e $source_file, "source file '$source_file' created";
$object_file = $b->object_file($source_file);
ok 1;
is $object_file, $b->compile(source => $source_file, 'C++' => 1);
$lib_file = $b->lib_file($object_file);
ok 1;
my ($lib, @temps) = $b->link(objects => $object_file,
module_name => 'cplust');
$lib =~ tr/"'//d;
is $lib_file, $lib;
for ($source_file, $object_file, $lib_file) {
tr/"'//d;
1 while unlink;
}
if ($^O eq 'VMS') {
1 while unlink 'CPLUST.LIS';
1 while unlink 'CPLUST.OPT';
}
|