Many fixes after CPANTESTERS report
[Config-Perl-V.git] / t / 22_plv510.t
bloba61d041046e904c4b42f399a7b6de0fc066dc66f
1 #!/pro/bin/perl
3 use strict;
4 use warnings;
6 BEGIN {
7 use Test::More;
8 my $tests = 91;
9 unless ($ENV{PERL_CORE}) {
10 require Test::NoWarnings;
11 Test::NoWarnings->import ();
12 $tests++;
15 plan tests => $tests;
18 use Config::Perl::V;
20 ok (my $conf = Config::Perl::V::plv2hash (<DATA>), "Read perl -v block");
21 ok (exists $conf->{$_}, "Has $_ entry") for qw( build environment config inc );
23 is ($conf->{build}{osname}, $conf->{config}{osname}, "osname");
24 is ($conf->{build}{stamp}, 0, "No build time known");
25 is ($conf->{config}{version}, "5.10.0", "reconstructed \%Config{version}");
27 my $opt = Config::Perl::V::plv2hash ("")->{build}{options};
28 foreach my $o (sort keys %$opt) {
29 is ($conf->{build}{options}{$o}, 0, "Runtime option $o unset");
32 __END__
33 Summary of my perl5 (revision 5 version 10 subversion 0) configuration:
34 Platform:
35 osname=linux, osvers=2.6.22.13-0.3-default, archname=i686-linux-64int
36 uname='linux nb09 2.6.22.13-0.3-default #1 smp 20071119 15:02:58 utc i686 i686 i386 gnulinux '
37 config_args='-Duse64bitint -des'
38 hint=recommended, useposix=true, d_sigaction=define
39 useithreads=undef, usemultiplicity=undef
40 useperlio=define, d_sfio=undef, uselargefiles=define, usesocks=undef
41 use64bitint=define, use64bitall=undef, uselongdouble=undef
42 usemymalloc=n, bincompat5005=undef
43 Compiler:
44 cc='cc', ccflags ='-fno-strict-aliasing -pipe -I/pro/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64',
45 optimize='-O2 -g',
46 cppflags='-fno-strict-aliasing -pipe -I/pro/local/include'
47 ccversion='', gccversion='4.2.1 (SUSE Linux)', gccosandvers=''
48 intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=12345678
49 d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=12
50 ivtype='long long', ivsize=8, nvtype='double', nvsize=8, Off_t='off_t', lseeksize=8
51 alignbytes=4, prototype=define
52 Linker and Libraries:
53 ld='cc', ldflags ='-L/pro/local/lib'
54 libpth=/pro/local/lib /lib /usr/lib /usr/local/lib
55 libs=-lnsl -lgdbm -ldb -ldl -lm -lcrypt -lutil -lc
56 perllibs=-lnsl -ldl -lm -lcrypt -lutil -lc
57 libc=/lib/libc-2.6.1.so, so=so, useshrplib=false, libperl=libperl.a
58 gnulibc_version='2.6.1'
59 Dynamic Linking:
60 dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='-Wl,-E'
61 cccdlflags='-fPIC', lddlflags='-shared -O2 -L/pro/local/lib'