Inline-C v0.82_001 Perl 5 v5.8.9 amd64-freebsd
- Status
- Pass
- From
- David Cantrell (DCANTRELL)
- Dist
-
Inline-C v0.82_001
- Platform
- Perl 5 v5.8.9 amd64-freebsd
- Date
- 2022-03-11 14:24:06
- ID
- e8ab2570-a146-11ec-99da-94b596927d5f
This distribution has been tested as part of the CPAN Testers
project, supporting the Perl programming language. See
http://wiki.cpantesters.org/ for more information or email
questions to cpan-testers-discuss@perl.org
--
Dear Ed J,
This is a computer-generated report for Inline-C-0.82_001
on perl 5.8.9, created by CPAN-Reporter-1.2018.
Thank you for uploading your work to CPAN. Congratulations!
All tests were successful.
Sections of this report:
* Tester comments
* Program output
* Prerequisites
* Environment and other context
------------------------------
TESTER COMMENTS
------------------------------
Additional comments from tester:
this report is from an automated smoke testing program
and was not reviewed by a human for accuracy
------------------------------
PROGRAM OUTPUT
------------------------------
Output from '/usr/bin/make test':
Skip blib/lib/auto/share/dist/Inline-C/inline-c.pgx (unchanged)
PERL_DL_NONLAZY=1 "/home/david/cpantesting/perl-5.8.9/bin/perl" "-MExtUtils::Command::MM" "-MTest::Harness" "-e" "undef *Test::Harness::Switches; test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/00-report-prereqs................#
# Versions for all modules listed in MYMETA.json (including optional ones):
#
# === Configure Requires ===
#
# Module Want Have Where Howbig
# ----------------------- ---- ---- ------------------------------------------------------ ------
# ExtUtils::MakeMaker any 7.64 /home/david/cpantesting/perl-5.8.9/lib/5.8.9 109482
# File::ShareDir::Install 0.06 0.13 /home/david/cpantesting/perl-5.8.9/lib/site_perl/5.8.9 11192
#
# === Build Requires ===
#
# Module Want Have Where Howbig
# ------------------- ---- ---- -------------------------------------------- ------
# ExtUtils::MakeMaker any 7.64 /home/david/cpantesting/perl-5.8.9/lib/5.8.9 109482
#
# === Test Requires ===
#
# Module Want Have Where Howbig
# --------------------- ---- -------- -------------------------------------------------------------------- ------
# File::Copy::Recursive any 0.45 /home/david/cpantesting/perl-5.8.9/lib/site_perl/5.8.9 27561
# File::Path any 2.07_02 /home/david/cpantesting/perl-5.8.9/lib/5.8.9 29313
# File::Temp 0.19 0.22 /home/david/cpantesting/perl-5.8.9/lib/5.8.9 74502
# Test::More 0.88 1.302188 /home/david/cpantesting/perl-5.8.9/lib/5.8.9 52981
# Test::Warn 0.23 0.36 /home/david/cpantesting/perl-5.8.9/lib/site_perl/5.8.9 15895
# YAML::XS any 0.83 /home/david/cpantesting/perl-5.8.9/lib/site_perl/5.8.9/amd64-freebsd 3593
# autodie any 2.34 /home/david/cpantesting/perl-5.8.9/lib/5.8.9 12436
# version 0.77 0.9929 /home/david/cpantesting/perl-5.8.9/lib/site_perl/5.8.9 3549
#
# === Runtime Requires ===
#
# Module Want Have Where Howbig
# ------------------- -------- -------- ---------------------------------------------------------- ------
# ExtUtils::MakeMaker 7.00 7.64 /home/david/cpantesting/perl-5.8.9/lib/5.8.9 109482
# File::Spec 0.8 3.75 /home/david/cpantesting/perl-5.8.9/lib/5.8.9/amd64-freebsd 10571
# Inline 0.86 0.86 /home/david/cpantesting/perl-5.8.9/lib/site_perl/5.8.9 62663
# Parse::RecDescent 1.967009 1.967015 /home/david/cpantesting/perl-5.8.9/lib/site_perl/5.8.9 222044
# Pegex 0.66 0.75 /home/david/cpantesting/perl-5.8.9/lib/site_perl/5.8.9 750
#
ok
t/000-require-modules..............ok
t/01syntax.........................ok
t/02config.........................ok
t/03typemap........................ok
t/04perlapi........................ok
t/05xsmode.........................ok
t/06parseregexp....................ok
t/07typemap_multi..................ok
t/08taint..........................ok
t/09parser.........................This test could take a couple of minutes to run
ok
t/10callback.......................ok
t/11default_readonly...............ok
t/14void_arg.......................ok
t/14void_arg_PRD...................Use of inherited AUTOLOAD for non-method main::foo1() is deprecated at (eval
53) line 1 (#1)
(D deprecated) As an (ahem) accidental feature, AUTOLOAD subroutines
are looked up as methods (using the @ISA hierarchy) even when the
subroutines to be autoloaded were called as plain functions (e.g.
Foo::bar()), not as methods (e.g. Foo->bar() or <
$obj-bar() >>).
This bug will be rectified in future by using method lookup only for
methods' AUTOLOADs. However, there is a significant base of existing
code that may be using the old behavior. So, as an interim step, Perl
currently issues an optional warning when non-methods use inherited
AUTOLOADs.
The simple rule is: Inheritance will not work when autoloading
non-methods. The simple fix for old code is: In any module that used
to depend on inheriting AUTOLOAD for non-methods from a base class
named BaseClass, execute *AUTOLOAD = \&BaseClass::AUTOLOAD during
startup.
In code that currently says use AutoLoader; @ISA = qw(AutoLoader);
you should remove AutoLoader from @ISA and change use AutoLoader; to
use AutoLoader 'AUTOLOAD';.
Use of inherited AUTOLOAD for non-method main::foo2() is deprecated at (eval
55) line 1 (#1)
Use of inherited AUTOLOAD for non-method main::foo3() is deprecated at (eval
57) line 1 (#1)
Use of inherited AUTOLOAD for non-method main::foo7() is deprecated at (eval
59) line 1 (#1)
Use of inherited AUTOLOAD for non-method main::foo8() is deprecated at (eval
61) line 1 (#1)
Use of inherited AUTOLOAD for non-method main::foo9() is deprecated at (eval
63) line 1 (#1)
Use of inherited AUTOLOAD for non-method main::foo10() is deprecated at (eval
65) line 1 (#1)
Use of inherited AUTOLOAD for non-method main::foo11() is deprecated at (eval
67) line 1 (#1)
Use of inherited AUTOLOAD for non-method main::foo12() is deprecated at (eval
69) line 1 (#1)
ok
t/15ccflags........................ok
t/16ccflagsex......................ok
t/17prehead........................ok
t/18quote_space....................ok
t/19INC............................ok
t/20eval...........................ok
t/21read_DATA......................ok
t/22read_DATA_2....................ok
t/23validate.......................ok
t/24prefix.........................ok
t/25proto..........................ok
t/26fork...........................ok
t/27inline_maker...................ok
t/28autowrap.......................ok
t/29refargs........................ok
t/30cppflags.......................ok
t/31include_dirs_angle_brackets....ok
t/32include_dirs_double_quotes.....ok
t/33intended_double_quotes.........ok
t/author-pod-syntax................skipped
all skipped: these tests are for testing by the author
t/parse-pegex......................Warning: Use of "caller" without parentheses is ambiguous at t/TestInlineC.pm line 38.
ok
4/24 unexpectedly succeeded
TODO PASSED tests 4, 7-9
t/pegex-parser.....................skipped
all skipped: $ENV{PERL_INLINE_DEVELOPER_TEST} not set
All tests successful (4 subtests UNEXPECTEDLY SUCCEEDED), 2 tests skipped.
Passed TODO Stat Wstat TODOs Pass List of Passed
-------------------------------------------------------------------------------
t/parse-pegex.t 23 4 4 7-9
Files=37, Tests=162, 296 wallclock secs (91.21 cusr + 24.85 csys = 116.06 CPU)
------------------------------
PREREQUISITES
------------------------------
Prerequisite modules loaded:
requires:
Module Need Have
----------------------- -------- --------
ExtUtils::MakeMaker 7.00 7.64
File::Spec 0.8 3.75
Inline 0.86 0.86
Parse::RecDescent 1.967009 1.967015
Pegex 0.66 0.75
perl 5.008001 5.008009
build_requires:
Module Need Have
----------------------- -------- --------
autodie 0 2.34
ExtUtils::MakeMaker 0 7.64
File::Copy::Recursive 0 0.45
File::Path 0 2.07_02
File::Temp 0.19 0.22
Test::More 0.88 1.302188
Test::Warn 0.23 0.36
version 0.77 0.9929
YAML::XS 0 0.83
configure_requires:
Module Need Have
----------------------- -------- --------
ExtUtils::MakeMaker 0 7.64
File::ShareDir::Install 0.06 0.13
------------------------------
ENVIRONMENT AND OTHER CONTEXT
------------------------------
Environment variables:
AUTOMATED_TESTING = 1
LANG = en_GB.UTF-8
NONINTERACTIVE_TESTING = 1
PATH = /home/david/perl5/perlbrew/bin:/home/david/perl5/perlbrew/perls/perl-5.30.2/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/home/david/bin
PERL = 5.8.9
PERL5LIB =
PERL5OPT =
PERL5_CPANPLUS_IS_RUNNING = 27050
PERL5_CPAN_IS_RUNNING = 27050
PERLBREW_HOME = /home/david/.perlbrew
PERLBREW_MANPATH = /home/david/perl5/perlbrew/perls/perl-5.30.2/man
PERLBREW_PATH = /home/david/perl5/perlbrew/bin:/home/david/perl5/perlbrew/perls/perl-5.30.2/bin
PERLBREW_PERL = perl-5.30.2
PERLBREW_ROOT = /home/david/perl5/perlbrew
PERLBREW_SHELLRC_VERSION = 0.89
PERLBREW_VERSION = 0.89
PERLVER = 5.8.9
PERL_INLINE_DIRECTORY = /home/david/.Inline-5.8.9
PERL_MM_USE_DEFAULT = 1
PERL_USE_UNSAFE_INC = 0
SHELL = /usr/local/bin/bash
TERM = screen
Perl special variables (and OS-specific diagnostics, for MSWin32):
$^X = /home/david/cpantesting/perl-5.8.9/bin/perl
$UID/$EUID = 1001 / 1001
$GID = 1001 1001 0
$EGID = 1001 1001 0
Perl module toolchain versions installed:
Module Have
------------------- --------
CPAN 1.94
CPAN::Meta 2.143240
Cwd 3.75
ExtUtils::CBuilder 0.280236
ExtUtils::Command 7.64
ExtUtils::Install 2.06
ExtUtils::MakeMaker 7.64
ExtUtils::Manifest 1.70
ExtUtils::ParseXS 3.44
File::Spec 3.75
JSON n/a
JSON::PP 4.07
Module::Build n/a
Module::Signature n/a
Parse::CPAN::Meta 1.4414
Test::Harness 2.64
Test::More 1.302188
YAML 1.30
YAML::Syck n/a
version 0.9929
--
Summary of my perl5 (revision 5 version 8 subversion 9) configuration:
Platform:
osname=freebsd, osvers=13.0-release-p7, archname=amd64-freebsd
uname='freebsd cpantesting-freebsd-utm.local 13.0-release-p7 freebsd 13.0-release-p7 #0: mon jan 31 18:24:03 utc 2022 root@amd64-builder.daemonology.net:usrobjusrsrcamd64.amd64sysgeneric amd64 '
config_args='-de -Dprefix=/home/david/cpantesting/perl-5.8.9'
hint=recommended, useposix=true, d_sigaction=define
usethreads=undef use5005threads=undef useithreads=undef usemultiplicity=undef
useperlio=define d_sfio=undef uselargefiles=define usesocks=undef
use64bitint=define use64bitall=define uselongdouble=undef
usemymalloc=n, bincompat5005=undef
Compiler:
cc='cc', ccflags ='-DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -fno-strict-aliasing -pipe -I/usr/local/include',
optimize='-O2',
cppflags='-DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -fno-strict-aliasing -pipe -I/usr/local/include'
ccversion='', gccversion='FreeBSD Clang 11.0.1 (git@github.com:llvm/llvm-project.git llvmorg-11.0.1-0-g43ff75f2c3fe)', gccosandvers=''
intsize=4, longsize=8, ptrsize=8, doublesize=8, byteorder=12345678
d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16
ivtype='long', ivsize=8, nvtype='double', nvsize=8, Off_t='off_t', lseeksize=8
alignbytes=8, prototype=define
Linker and Libraries:
ld='cc', ldflags ='-Wl,-E -L/usr/local/lib'
libpth=/usr/lib /usr/local/lib
libs=-lgdbm -ldl -lm -lcrypt -lutil -lc
perllibs=-ldl -lm -lcrypt -lutil -lc
libc=, so=so, useshrplib=false, libperl=libperl.a
gnulibc_version=''
Dynamic Linking:
dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags=' '
cccdlflags='-DPIC -fPIC', lddlflags='-shared -L/usr/local/lib'
Characteristics of this binary (from libperl):
Compile-time options: PERL_MALLOC_WRAP USE_64_BIT_ALL USE_64_BIT_INT
USE_FAST_STDIO USE_LARGE_FILES USE_PERLIO
Locally applied patches:
Devel::PatchPerl 2.08
Built under freebsd
Compiled at Feb 3 2022 12:51:08
%ENV:
PERL="5.8.9"
PERL5LIB=""
PERL5OPT=""
PERL5_CPANPLUS_IS_RUNNING="27050"
PERL5_CPAN_IS_RUNNING="27050"
PERLBREW_HOME="/home/david/.perlbrew"
PERLBREW_MANPATH="/home/david/perl5/perlbrew/perls/perl-5.30.2/man"
PERLBREW_PATH="/home/david/perl5/perlbrew/bin:/home/david/perl5/perlbrew/perls/perl-5.30.2/bin"
PERLBREW_PERL="perl-5.30.2"
PERLBREW_ROOT="/home/david/perl5/perlbrew"
PERLBREW_SHELLRC_VERSION="0.89"
PERLBREW_VERSION="0.89"
PERLVER="5.8.9"
PERL_INLINE_DIRECTORY="/home/david/.Inline-5.8.9"
PERL_MM_USE_DEFAULT="1"
PERL_USE_UNSAFE_INC="0"
@INC:
/home/david/cpantesting/perl-5.8.9/lib/5.8.9/amd64-freebsd
/home/david/cpantesting/perl-5.8.9/lib/5.8.9
/home/david/cpantesting/perl-5.8.9/lib/site_perl/5.8.9/amd64-freebsd
/home/david/cpantesting/perl-5.8.9/lib/site_perl/5.8.9
.