1#!/pro/bin/perl
2
3use strict;
4use warnings;
5
6BEGIN {
7    use Test::More;
8    my $tests = 119;
9    unless ($ENV{PERL_CORE}) {
10	require Test::NoWarnings;
11	Test::NoWarnings->import ();
12	$tests++;
13	}
14
15    plan tests => $tests;
16    }
17
18use Config::Perl::V;
19
20ok (my $conf = Config::Perl::V::plv2hash (<DATA>), "Read perl -v block");
21ok (exists $conf->{$_}, "Has $_ entry") for qw( build environment config inc );
22
23is ($conf->{build}{osname}, $conf->{config}{osname}, "osname");
24is ($conf->{build}{stamp}, "Jun 30 2014 15:37:09", "Build time");
25is ($conf->{config}{version}, "5.20.0", "reconstructed \$Config{version}");
26
27my $opt = Config::Perl::V::plv2hash ("")->{build}{options};
28foreach my $o (sort qw(
29	HAS_TIMES MULTIPLICITY PERLIO_LAYERS
30	PERL_DONT_CREATE_GVSV
31	PERL_HASH_FUNC_ONE_AT_A_TIME_HARD
32	PERL_IMPLICIT_CONTEXT PERL_MALLOC_WRAP
33	PERL_NEW_COPY_ON_WRITE PERL_PRESERVE_IVUV
34	PERL_USE_DEVEL USE_64_BIT_INT USE_ITHREADS
35	USE_LARGE_FILES USE_LOCALE USE_LOCALE_COLLATE
36	USE_LOCALE_CTYPE USE_LOCALE_NUMERIC USE_LONG_DOUBLE
37	USE_PERLIO USE_PERL_ATOF USE_REENTRANT_API
38	)) {
39    is ($conf->{build}{options}{$o}, 1, "Runtime option $o set");
40    delete $opt->{$o};
41    }
42foreach my $o (sort keys %$opt) {
43    is ($conf->{build}{options}{$o}, 0, "Runtime option $o unset");
44    }
45
46eval { require Digest::MD5; };
47my $md5 = $@ ? "0" x 32 : "3e7b4513cd80c6ef00fcd77e5e16f8b4";
48ok (my $sig = Config::Perl::V::signature ($conf), "Get signature");
49is ($sig, $md5, "MD5");
50
51is_deeply ($conf->{build}{patches}, [], "No local patches");
52
53my %check = (
54    alignbytes      => 4,
55    api_version     => 20,
56    bincompat5005   => "undef",
57    byteorder       => 12345678,
58    cc              => "cc",
59    cccdlflags      => "-fPIC",
60    ccdlflags       => "-Wl,-E",
61    config_args     => "-Dusedevel -Uversiononly -Dinc_version_list=none -Duse64bitint -Dusethreads -Duseithreads -Duselongdouble -des",
62    gccversion      => "4.8.1 20130909 [gcc-4_8-branch revision 202388]",
63    gnulibc_version => "2.18",
64    ivsize          => 8,
65    ivtype          => "long long",
66    ld              => "cc",
67    lddlflags       => "-shared -O2 -L/pro/local/lib -fstack-protector",
68    ldflags         => "-L/pro/local/lib -fstack-protector",
69    libc            => "libc-2.18.so",
70    lseektype       => "off_t",
71    osvers          => "3.11.10-17-desktop",
72    use64bitint     => "define",
73    );
74is ($conf->{config}{$_}, $check{$_}, "reconstructed \$Config{$_}") for sort keys %check;
75
76__END__
77Summary of my perl5 (revision 5 version 20 subversion 0) configuration:
78
79  Platform:
80    osname=linux, osvers=3.11.10-17-desktop, archname=i686-linux-thread-multi-64int-ld
81    uname='linux lx09 3.11.10-17-desktop #1 smp preempt mon jun 16 15:28:13 utc 2014 (fba7c1f) i686 i686 i386 gnulinux '
82    config_args='-Dusedevel -Uversiononly -Dinc_version_list=none -Duse64bitint -Dusethreads -Duseithreads -Duselongdouble -des'
83    hint=recommended, useposix=true, d_sigaction=define
84    useithreads=define, usemultiplicity=define
85    use64bitint=define, use64bitall=undef, uselongdouble=define
86    usemymalloc=n, bincompat5005=undef
87  Compiler:
88    cc='cc', ccflags ='-D_REENTRANT -D_GNU_SOURCE -fwrapv -fno-strict-aliasing -pipe -fstack-protector -I/pro/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64',
89    optimize='-O2',
90    cppflags='-D_REENTRANT -D_GNU_SOURCE -fwrapv -fno-strict-aliasing -pipe -fstack-protector -I/pro/local/include'
91    ccversion='', gccversion='4.8.1 20130909 [gcc-4_8-branch revision 202388]', gccosandvers=''
92    intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=12345678
93    d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=12
94    ivtype='long long', ivsize=8, nvtype='long double', nvsize=12, Off_t='off_t', lseeksize=8
95    alignbytes=4, prototype=define
96  Linker and Libraries:
97    ld='cc', ldflags ='-L/pro/local/lib -fstack-protector'
98    libpth=/usr/local/lib /usr/lib/gcc/i586-suse-linux/4.8/include-fixed /usr/lib/gcc/i586-suse-linux/4.8/../../../../i586-suse-linux/lib /usr/lib /pro/local/lib /lib
99    libs=-lnsl -lgdbm -ldb -ldl -lm -lcrypt -lutil -lpthread -lc -lgdbm_compat
100    perllibs=-lnsl -ldl -lm -lcrypt -lutil -lpthread -lc
101    libc=libc-2.18.so, so=so, useshrplib=false, libperl=libperl.a
102    gnulibc_version='2.18'
103  Dynamic Linking:
104    dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='-Wl,-E'
105    cccdlflags='-fPIC', lddlflags='-shared -O2 -L/pro/local/lib -fstack-protector'
106
107
108Characteristics of this binary (from libperl):
109  Compile-time options: HAS_TIMES MULTIPLICITY PERLIO_LAYERS
110                        PERL_DONT_CREATE_GVSV
111                        PERL_HASH_FUNC_ONE_AT_A_TIME_HARD
112                        PERL_IMPLICIT_CONTEXT PERL_MALLOC_WRAP
113                        PERL_NEW_COPY_ON_WRITE PERL_PRESERVE_IVUV
114                        PERL_USE_DEVEL USE_64_BIT_INT USE_ITHREADS
115                        USE_LARGE_FILES USE_LOCALE USE_LOCALE_COLLATE
116                        USE_LOCALE_CTYPE USE_LOCALE_NUMERIC USE_LONG_DOUBLE
117                        USE_PERLIO USE_PERL_ATOF USE_REENTRANT_API
118  Built under linux
119  Compiled at Jun 30 2014 15:37:09
120  @INC:
121    /pro/lib/perl5/site_perl/5.20.0/i686-linux-thread-multi-64int-ld
122    /pro/lib/perl5/site_perl/5.20.0
123    /pro/lib/perl5/5.20.0/i686-linux-thread-multi-64int-ld
124    /pro/lib/perl5/5.20.0
125    .
126