source: vendor/perl/5.8.8/lib/ExtUtils/t/MM_BeOS.t@ 3181

Last change on this file since 3181 was 3181, checked in by bird, 18 years ago

perl 5.8.8

File size: 1.1 KB
Line 
1#!/usr/bin/perl
2
3BEGIN {
4 if( $ENV{PERL_CORE} ) {
5 chdir 't' if -d 't';
6 @INC = '../lib';
7 }
8 else {
9 unshift @INC, 't/lib';
10 }
11}
12chdir 't';
13
14use Test::More;
15
16BEGIN {
17 if ($^O =~ /beos/i) {
18 plan tests => 4;
19 } else {
20 plan skip_all => 'This is not BeOS';
21 }
22}
23
24use Config;
25use File::Spec;
26use File::Basename;
27
28# tels - Taken from MM_Win32.t - I must not understand why this works, right?
29# Does this mimic ExtUtils::MakeMaker ok?
30{
31 @MM::ISA = qw(
32 ExtUtils::MM_Unix
33 ExtUtils::Liblist::Kid
34 ExtUtils::MakeMaker
35 );
36 # MM package faked up by messy MI entanglement
37 package MM;
38 sub DESTROY {}
39}
40
41require_ok( 'ExtUtils::MM_BeOS' );
42
43my $MM = bless { NAME => "Foo" }, 'MM';
44
45# init_linker
46{
47 my $libperl = File::Spec->catfile('$(PERL_INC)',
48 $Config{libperl} || 'libperl.a' );
49 my $export = '';
50 my $after = '';
51 $MM->init_linker;
52
53 is( $MM->{PERL_ARCHIVE}, $libperl, 'PERL_ARCHIVE' );
54 is( $MM->{PERL_ARCHIVE_AFTER}, $after, 'PERL_ARCHIVE_AFTER' );
55 is( $MM->{EXPORT_LIST}, $export, 'EXPORT_LIST' );
56}
Note: See TracBrowser for help on using the repository browser.