1#!/pro/bin/perl
2
3use strict;
4use warnings;
5
6BEGIN {
7    use Test::More;
8    my $tests = 125;
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");
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      => 4,
59    api_version     => 20,
60    bincompat5005   => "undef",
61    byteorder       => 12345678,
62    cc              => "cc",
63    cccdlflags      => "-fPIC",
64    ccdlflags       => "-Wl,-E",
65    config_args     => "-Dusedevel -Uversiononly -Dinc_version_list=none -Duse64bitint -Dusethreads -Duseithreads -Duselongdouble -des",
66    gccversion      => "4.8.1 20130909 [gcc-4_8-branch revision 202388]",
67    gnulibc_version => "2.18",
68    ivsize          => 8,
69    ivtype          => "long 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.18.so",
74    lseektype       => "off_t",
75    osvers          => "3.11.10-17-desktop",
76    use64bitint     => "define",
77    );
78is ($conf->{config}{$_}, $check{$_}, "reconstructed \$Config{$_}") for sort keys %check;
79
80__END__
81Summary of my perl5 (revision 5 version 20 subversion 0) configuration:
82   
83  Platform:
84    osname=linux, osvers=3.11.10-17-desktop, archname=i686-linux-thread-multi-64int-ld
85    uname='linux lx09 3.11.10-17-desktop #1 smp preempt mon jun 16 15:28:13 utc 2014 (fba7c1f) i686 i686 i386 gnulinux '
86    config_args='-Dusedevel -Uversiononly -Dinc_version_list=none -Duse64bitint -Dusethreads -Duseithreads -Duselongdouble -des'
87    hint=recommended, useposix=true, d_sigaction=define
88    useithreads=define, usemultiplicity=define
89    use64bitint=define, use64bitall=undef, uselongdouble=define
90    usemymalloc=n, bincompat5005=undef
91  Compiler:
92    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',
93    optimize='-O2',
94    cppflags='-D_REENTRANT -D_GNU_SOURCE -fwrapv -fno-strict-aliasing -pipe -fstack-protector -I/pro/local/include'
95    ccversion='', gccversion='4.8.1 20130909 [gcc-4_8-branch revision 202388]', gccosandvers=''
96    intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=12345678
97    d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=12
98    ivtype='long long', ivsize=8, nvtype='long double', nvsize=12, Off_t='off_t', lseeksize=8
99    alignbytes=4, prototype=define
100  Linker and Libraries:
101    ld='cc', ldflags ='-L/pro/local/lib -fstack-protector'
102    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
103    libs=-lnsl -lgdbm -ldb -ldl -lm -lcrypt -lutil -lpthread -lc -lgdbm_compat
104    perllibs=-lnsl -ldl -lm -lcrypt -lutil -lpthread -lc
105    libc=libc-2.18.so, so=so, useshrplib=false, libperl=libperl.a
106    gnulibc_version='2.18'
107  Dynamic Linking:
108    dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='-Wl,-E'
109    cccdlflags='-fPIC', lddlflags='-shared -O2 -L/pro/local/lib -fstack-protector'
110
111
112Characteristics of this binary (from libperl): 
113  Compile-time options: HAS_TIMES MULTIPLICITY PERLIO_LAYERS
114                        PERL_DONT_CREATE_GVSV
115                        PERL_HASH_FUNC_ONE_AT_A_TIME_HARD
116                        PERL_IMPLICIT_CONTEXT PERL_MALLOC_WRAP
117                        PERL_NEW_COPY_ON_WRITE PERL_PRESERVE_IVUV
118                        PERL_USE_DEVEL USE_64_BIT_INT USE_ITHREADS
119                        USE_LARGE_FILES USE_LOCALE USE_LOCALE_COLLATE
120                        USE_LOCALE_CTYPE USE_LOCALE_NUMERIC USE_LONG_DOUBLE
121                        USE_PERLIO USE_PERL_ATOF USE_REENTRANT_API
122  Built under linux
123  Compiled at Jun 30 2014 15:37:09
124  @INC:
125    /pro/lib/perl5/site_perl/5.20.0/i686-linux-thread-multi-64int-ld
126    /pro/lib/perl5/site_perl/5.20.0
127    /pro/lib/perl5/5.20.0/i686-linux-thread-multi-64int-ld
128    /pro/lib/perl5/5.20.0
129    .
130