1#!/pro/bin/perl
2
3use strict;
4use warnings;
5
6BEGIN {
7    use Test::More;
8    my $tests = 126;
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}, "Apr 19 2015 12:35:54", "Build time");
25is ($conf->{config}{version}, "5.20.2", "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_ALL 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 : "9f954ebc2be7b1d7e151ab28dbdf7062";
48ok (my $sig = Config::Perl::V::signature ($conf), "Get signature");
49
50SKIP: {
51    ord "A" == 65 or skip "ASCII-centric test", 1;
52    is ($sig, $md5, "MD5");
53    }
54
55is_deeply ($conf->{build}{patches}, [], "No local patches");
56
57my %check = (
58    alignbytes      => 16,
59    api_version     => 20,
60    bincompat5005   => "undef",
61    byteorder       => 12345678,
62    cc              => "cc",
63    cccdlflags      => "-fPIC",
64    ccdlflags       => "-Wl,-E",
65    config_args     => "-Dusedevel -Duse64bitall -Dusethreads -Duseithreads -Duselongdouble -des",
66    gccversion      => "4.8.3 20140627 [gcc-4_8-branch revision 212064]",
67    gnulibc_version => "2.19",
68    ivsize          => 8,
69    ivtype          => "long",
70    ld              => "cc",
71    lddlflags       => "-shared -O2 -L/pro/local/lib -fstack-protector",
72    ldflags         => "-L/pro/local/lib -fstack-protector",
73    libc            => "libc-2.19.so",
74    lseektype       => "off_t",
75    osvers          => "3.16.7-13-desktop",
76    use64bitall     => "define",
77    use64bitint     => "define",
78    );
79is ($conf->{config}{$_}, $check{$_}, "reconstructed \$Config{$_}") for sort keys %check;
80
81__END__
82Summary of my perl5 (revision 5 version 20 subversion 2) configuration:
83   
84  Platform:
85    osname=linux, osvers=3.16.7-13-desktop, archname=x86_64-linux-thread-multi-ld
86    uname='linux lx09 3.16.7-13-desktop #1 smp preempt wed mar 18 17:31:15 utc 2015 (ba2afab) x86_64 x86_64 x86_64 gnulinux '
87    config_args='-Dusedevel -Duse64bitall -Dusethreads -Duseithreads -Duselongdouble -des'
88    hint=recommended, useposix=true, d_sigaction=define
89    useithreads=define, usemultiplicity=define
90    use64bitint=define, use64bitall=define, uselongdouble=define
91    usemymalloc=n, bincompat5005=undef
92  Compiler:
93    cc='cc', ccflags ='-D_REENTRANT -D_GNU_SOURCE -fPIC -fwrapv -fno-strict-aliasing -pipe -fstack-protector -I/pro/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64',
94    optimize='-O2',
95    cppflags='-D_REENTRANT -D_GNU_SOURCE -fwrapv -fno-strict-aliasing -pipe -fstack-protector -I/pro/local/include'
96    ccversion='', gccversion='4.8.3 20140627 [gcc-4_8-branch revision 212064]', gccosandvers=''
97    intsize=4, longsize=8, ptrsize=8, doublesize=8, byteorder=12345678
98    d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16
99    ivtype='long', ivsize=8, nvtype='long double', nvsize=16, Off_t='off_t', lseeksize=8
100    alignbytes=16, prototype=define
101  Linker and Libraries:
102    ld='cc', ldflags ='-L/pro/local/lib -fstack-protector'
103    libpth=/usr/local/lib /usr/lib64/gcc/x86_64-suse-linux/4.8/include-fixed /usr/lib64/gcc/x86_64-suse-linux/4.8/../../../../x86_64-suse-linux/lib /usr/lib /pro/local/lib /lib/../lib64 /usr/lib/../lib64 /lib /lib64 /usr/lib64 /usr/local/lib64
104    libs=-lnsl -lgdbm -ldb -ldl -lm -lcrypt -lutil -lpthread -lc -lgdbm_compat
105    perllibs=-lnsl -ldl -lm -lcrypt -lutil -lpthread -lc
106    libc=libc-2.19.so, so=so, useshrplib=false, libperl=libperl.a
107    gnulibc_version='2.19'
108  Dynamic Linking:
109    dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='-Wl,-E'
110    cccdlflags='-fPIC', lddlflags='-shared -O2 -L/pro/local/lib -fstack-protector'
111
112
113Characteristics of this binary (from libperl): 
114  Compile-time options: HAS_TIMES MULTIPLICITY PERLIO_LAYERS
115                        PERL_DONT_CREATE_GVSV
116                        PERL_HASH_FUNC_ONE_AT_A_TIME_HARD
117                        PERL_IMPLICIT_CONTEXT PERL_MALLOC_WRAP
118                        PERL_NEW_COPY_ON_WRITE PERL_PRESERVE_IVUV
119                        PERL_USE_DEVEL USE_64_BIT_ALL USE_64_BIT_INT
120                        USE_ITHREADS USE_LARGE_FILES USE_LOCALE
121                        USE_LOCALE_COLLATE USE_LOCALE_CTYPE
122                        USE_LOCALE_NUMERIC USE_LONG_DOUBLE USE_PERLIO
123                        USE_PERL_ATOF USE_REENTRANT_API
124  Built under linux
125  Compiled at Apr 19 2015 12:35:54
126  @INC:
127    /pro/lib/perl5/site_perl/5.20.2/x86_64-linux-thread-multi-ld
128    /pro/lib/perl5/site_perl/5.20.2
129    /pro/lib/perl5/5.20.2/x86_64-linux-thread-multi-ld
130    /pro/lib/perl5/5.20.2
131    .
132