You are not logged in.

#1 2024-12-04 16:34:49

summers
Member
Registered: 2016-01-27
Posts: 28

'cpan XML::LibXML' install failing

I'm trying to install XML::LibXML

but it gives the below error.

So whats going wrong?


Test Summary Report
-------------------
t/02parse.t                                      (Wstat: 256 (exited 1) Tests: 533 Failed: 1)
  Failed test:  511
  Non-zero exit status: 1
t/08findnodes.t                                  (Wstat: 256 (exited 1) Tests: 45 Failed: 1)
  Failed test:  14
  Non-zero exit status: 1
t/19die_on_invalid_utf8_rt_58848.t               (Wstat: 256 (exited 1) Tests: 1 Failed: 1)
  Failed test:  1
  Non-zero exit status: 1
t/60error_prev_chain.t                           (Wstat: 65280 (exited 255) Tests: 0 Failed: 0)
  Non-zero exit status: 255
  Parse errors: Bad plan.  You planned 1 tests but ran 0.
Files=77, Tests=2546,  8 wallclock secs ( 0.31 usr  0.09 sys +  6.74 cusr  0.94 csys =  8.08 CPU)
Result: FAIL
Failed 4/77 test programs. 3/2546 subtests failed.
make: *** [Makefile:1330: test_dynamic] Error 255
Terminal does not support GetHistory.
Lockfile removed.
  SHLOMIF/XML-LibXML-2.0210.tar.gz
  /usr/bin/make test -- NOT OK
//hint// to see the cpan-testers results for installing this module, try:
  reports SHLOMIF/XML-LibXML-2.0210.tar.gz

Offline

#2 2025-01-03 15:44:20

summers
Member
Registered: 2016-01-27
Posts: 28

Re: 'cpan XML::LibXML' install failing

If it helps, these are the error messages:

t/02parse.t ........................................ 1/533
#   Failed test 'error parsing <!DOCTYPE X SYSTEM "example/ext_ent.dtd">
# <X>&foo;</X>
# '
#   at t/02parse.t line 887.
#          got: ''
#     expected: anything else
# Looks like you failed 1 test of 533.

t/08findnodes.t .................................... 1/45
#   Failed test ' TODO : Add test name'
#   at t/08findnodes.t line 126.
#          got: '3'
#     expected: '2'
# Looks like you failed 1 test of 45.

t/09xpath.t ........................................ 1/54 Argument "21305-GITv2.13.5" isn't numeric in numeric lt (<) at t/09xpath.t line 244.
Argument "21305-GITv2.13.5" isn't numeric in numeric lt (<) at t/09xpath.t line 244.

t/19die_on_invalid_utf8_rt_58848.t ................. 1/1
#   Failed test 'Parser error.'
#   at t/19die_on_invalid_utf8_rt_58848.t line 19.
#                   'example/thedieline.rss:26: I/O error : Invalid bytes in character encoding
# .com%2fblog%2f2010%2f06%2fginja-d-%25c3%25b3bidos.html&amp;t=Ginja+d%26%2339%3b+
#                                                                                 ^
# example/thedieline.rss:26: parser error : Entity 'ldquo' not defined
# log%2f2010%2f06%2fginja-d-%25c3%25b3bidos.html&amp;t=Ginja+d%26%2339%3b+&ldquo;
#                                                                                   ^
# example/thedieline.rss:26: parser error : Entity 'ldquo' not defined
# 2f2010%2f06%2fginja-d-%25c3%25b3bidos.html&amp;title=Ginja+d%26%2339%3b+&ldquo;
#                                                                                   ^
# example/thedieline.rss:26: parser error : Entity 'ldquo' not defined
# 2f2010%2f06%2fginja-d-%25c3%25b3bidos.html&amp;title=Ginja+d%26%2339%3b+&ldquo;
#                                                                                   ^
# example/thedieline.rss:26: parser error : Entity 'ldquo' not defined
# log%2f2010%2f06%2fginja-d-%25c3%25b3bidos.html&amp;t=Ginja+d%26%2339%3b+&ldquo;
#                                                                                   ^
# example/thedieline.rss:26: parser error : Entity 'ldquo' not defined
# 2f2010%2f06%2fginja-d-%25c3%25b3bidos.html&amp;title=Ginja+d%26%2339%3b+&ldquo;
#                                                                                   ^
# example/thedieline.rss:26: parser error : Entity 'ldquo' not defined
# 2f2010%2f06%2fginja-d-%25c3%25b3bidos.html&amp;title=Ginja+d%26%2339%3b+&ldquo;
#                                                                                   ^
# example/thedieline.rss:26: parser error : Entity 'ldquo' not defined
# This&quot; href=&quot;http://twitter.com/home?status=Ginja+d%26%2339%3b+&ldquo;
#                                                                                   ^
# '
#     doesn't match '(?^:parser error : Input is not proper UTF-8)'
# Looks like you failed 1 test of 1.
t/19die_on_invalid_utf8_rt_58848.t ................. Dubious, test returned 1 (wstat 256, 0x100)

Offline

#3 2025-04-01 20:11:12

kernst
Member
Registered: 2025-04-01
Posts: 1

Re: 'cpan XML::LibXML' install failing

Have a look at https://github.com/shlomif/perl-XML-LibXML/pull/87, try to apply the patch there, and see if maybe that gets you a bit farther.

See also https://stackoverflow.com/a/78965715, which mentions that you probably should have libxml and its development headers installed before trying to install XML::LibXML, to avoid other unrelated failures.

Hope that helps!

Last edited by kernst (2025-04-01 20:11:53)

Offline

#4 2025-04-01 20:48:29

mackin_cheese
Member
Registered: 2025-01-07
Posts: 461

Re: 'cpan XML::LibXML' install failing

What is the exact command you were using to install?

Offline

#5 2025-05-16 18:20:27

summers
Member
Registered: 2016-01-27
Posts: 28

Re: 'cpan XML::LibXML' install failing

mackin_cheese wrote:

What is the exact command you were using to install?

cpan XML::LibXML

Offline

#6 2025-05-16 18:37:37

summers
Member
Registered: 2016-01-27
Posts: 28

Re: 'cpan XML::LibXML' install failing

libxml2-2.14.3-1 is up to date

Offline

#7 2025-05-16 18:46:40

summers
Member
Registered: 2016-01-27
Posts: 28

Re: 'cpan XML::LibXML' install failing

'cpan XML::Grammar::ProductsSyndication' also failed - but Test::Count worked.

Can't install because of 2 dependencies missing (XML::LibXML,XML::LibXSLT)

Last edited by summers (2025-05-16 18:59:14)

Offline

#8 2025-05-16 23:21:52

WorMzy
Administrator
From: Scotland
Registered: 2010-06-16
Posts: 12,763
Website

Re: 'cpan XML::LibXML' install failing

Please use codes tags when posting terminal output.

https://wiki.archlinux.org/title/Genera … s_and_code

Mod note: not an installation issue, moving to NC.


Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD

Making lemonade from lemons since 2015.

Offline

#9 2025-05-17 02:00:43

summers
Member
Registered: 2016-01-27
Posts: 28

Re: 'cpan XML::LibXML' install failing

ok trying to install XML::LibXML XML::LibXSLT and XML::Grammar::ProductsSyndication

[summers@geekom ~]$ cpan reports SHLOMIF/XML-Grammar-ProductsSyndication-0.0406.tar.gz XML::LibXSLT XML::LibXML
Reading '/home/summers/.cpan/Metadata'
  Database was generated on Fri, 16 May 2025 15:52:39 GMT
Could not expand [reports]. Check the module name.
I can suggest names if you install one of Text::Levenshtein::XS, Text::Levenshtein::Damerau::XS, Text::Levenshtein, and Text::Levenshtein::Damerau::PP
and you provide the -x option on invocation.
Skipping reports because I couldn't find a matching namespace.
Checksum for /home/summers/.cpan/sources/authors/id/S/SH/SHLOMIF/XML-Grammar-ProductsSyndication-0.0406.tar.gz ok
Configuring S/SH/SHLOMIF/XML-Grammar-ProductsSyndication-0.0406.tar.gz with Build.PL
Checking prerequisites...
  requires:
    !  XML::LibXML is not installed
    !  XML::LibXSLT is not installed

ERRORS/WARNINGS FOUND IN PREREQUISITES.  You may wish to install the versions
of the modules indicated above before proceeding with this installation

Created MYMETA.yml and MYMETA.json
Creating new 'Build' script for 'XML-Grammar-ProductsSyndication' version '0.0406'
  SHLOMIF/XML-Grammar-ProductsSyndication-0.0406.tar.gz
  /usr/bin/perl Build.PL installdirs=site -- OK
Running Build for S/SH/SHLOMIF/XML-Grammar-ProductsSyndication-0.0406.tar.gz
----        Unsatisfied dependencies detected during       ----
---- SHLOMIF/XML-Grammar-ProductsSyndication-0.0406.tar.gz ----
    XML::LibXML [requires]
    XML::LibXSLT [requires]
Running install for module 'XML::LibXML'
Checksum for /home/summers/.cpan/sources/authors/id/S/SH/SHLOMIF/XML-LibXML-2.0210.tar.gz ok
Configuring S/SH/SHLOMIF/XML-LibXML-2.0210.tar.gz with Makefile.PL
Checking if your kit is complete...
Looks good
Generating a Unix-style Makefile
Writing Makefile for XML::LibXML
Writing MYMETA.yml and MYMETA.json
  SHLOMIF/XML-LibXML-2.0210.tar.gz
  /usr/bin/perl Makefile.PL INSTALLDIRS=site -- OK
Running make for S/SH/SHLOMIF/XML-LibXML-2.0210.tar.gz
cp lib/XML/LibXML/Element.pod blib/lib/XML/LibXML/Element.pod
cp lib/XML/LibXML/NodeList.pm blib/lib/XML/LibXML/NodeList.pm
cp lib/XML/LibXML/Node.pod blib/lib/XML/LibXML/Node.pod
cp lib/XML/LibXML/SAX/Builder.pm blib/lib/XML/LibXML/SAX/Builder.pm
cp lib/XML/LibXML/Common.pm blib/lib/XML/LibXML/Common.pm
cp lib/XML/LibXML/Boolean.pm blib/lib/XML/LibXML/Boolean.pm
cp lib/XML/LibXML/Error.pm blib/lib/XML/LibXML/Error.pm
cp lib/XML/LibXML/AttributeHash.pm blib/lib/XML/LibXML/AttributeHash.pm
cp lib/XML/LibXML/Parser.pod blib/lib/XML/LibXML/Parser.pod
cp lib/XML/LibXML/Number.pm blib/lib/XML/LibXML/Number.pm
cp lib/XML/LibXML/Literal.pm blib/lib/XML/LibXML/Literal.pm
cp lib/XML/LibXML/Pattern.pod blib/lib/XML/LibXML/Pattern.pod
cp lib/XML/LibXML/Attr.pod blib/lib/XML/LibXML/Attr.pod
cp LibXML.pm blib/lib/XML/LibXML.pm
cp lib/XML/LibXML/ErrNo.pm blib/lib/XML/LibXML/ErrNo.pm
cp lib/XML/LibXML/SAX.pod blib/lib/XML/LibXML/SAX.pod
cp lib/XML/LibXML/SAX.pm blib/lib/XML/LibXML/SAX.pm
cp lib/XML/LibXML/RegExp.pod blib/lib/XML/LibXML/RegExp.pod
cp lib/XML/LibXML/Document.pod blib/lib/XML/LibXML/Document.pod
cp lib/XML/LibXML/Dtd.pod blib/lib/XML/LibXML/Dtd.pod
cp lib/XML/LibXML/DocumentFragment.pod blib/lib/XML/LibXML/DocumentFragment.pod
cp lib/XML/LibXML/Comment.pod blib/lib/XML/LibXML/Comment.pod
cp lib/XML/LibXML/InputCallback.pod blib/lib/XML/LibXML/InputCallback.pod
cp lib/XML/LibXML/Devel.pm blib/lib/XML/LibXML/Devel.pm
cp lib/XML/LibXML/XPathContext.pm blib/lib/XML/LibXML/XPathContext.pm
cp lib/XML/LibXML/Reader.pod blib/lib/XML/LibXML/Reader.pod
cp lib/XML/LibXML/Error.pod blib/lib/XML/LibXML/Error.pod
cp lib/XML/LibXML/Common.pod blib/lib/XML/LibXML/Common.pod
cp lib/XML/LibXML/SAX/Parser.pm blib/lib/XML/LibXML/SAX/Parser.pm
cp lib/XML/LibXML/Reader.pm blib/lib/XML/LibXML/Reader.pm
cp lib/XML/LibXML/Namespace.pod blib/lib/XML/LibXML/Namespace.pod
cp LibXML.pod blib/lib/XML/LibXML.pod
cp lib/XML/LibXML/PI.pod blib/lib/XML/LibXML/PI.pod
cp lib/XML/LibXML/DOM.pod blib/lib/XML/LibXML/DOM.pod
cp lib/XML/LibXML/RelaxNG.pod blib/lib/XML/LibXML/RelaxNG.pod
cp lib/XML/LibXML/ErrNo.pod blib/lib/XML/LibXML/ErrNo.pod
cp lib/XML/LibXML/Schema.pod blib/lib/XML/LibXML/Schema.pod
cp lib/XML/LibXML/SAX/Generator.pm blib/lib/XML/LibXML/SAX/Generator.pm
cp lib/XML/LibXML/Text.pod blib/lib/XML/LibXML/Text.pod
cp lib/XML/LibXML/CDATASection.pod blib/lib/XML/LibXML/CDATASection.pod
cp lib/XML/LibXML/SAX/Builder.pod blib/lib/XML/LibXML/SAX/Builder.pod
cp lib/XML/LibXML/XPathContext.pod blib/lib/XML/LibXML/XPathContext.pod
cp lib/XML/LibXML/XPathExpression.pod blib/lib/XML/LibXML/XPathExpression.pod
Running Mkbootstrap for LibXML ()
chmod 644 "LibXML.bs"
"/usr/bin/perl" -MExtUtils::Command::MM -e 'cp_nonempty' -- LibXML.bs blib/arch/auto/XML/LibXML/LibXML.bs 644
cc -c  -I/usr/include/libxml2 -D_REENTRANT -D_GNU_SOURCE -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/include/db5.3 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=3 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -g -ffile-prefix-map=/build/perl/src=/usr/src/debug/perl -flto=auto   -DVERSION=\"2.0210\" -DXS_VERSION=\"2.0210\" -fPIC "-I/usr/lib/perl5/5.40/core_perl/CORE"  -DHAVE_UTF8 Av_CharPtrPtr.c
"/usr/bin/perl" "/usr/share/perl5/core_perl/ExtUtils/xsubpp"  -typemap '/usr/share/perl5/core_perl/ExtUtils/typemap' -typemap '/home/summers/.cpan/build/XML-LibXML-2.0210-44/typemap'  Devel.xs > Devel.xsc
mv Devel.xsc Devel.c
cc -c  -I/usr/include/libxml2 -D_REENTRANT -D_GNU_SOURCE -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/include/db5.3 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=3 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -g -ffile-prefix-map=/build/perl/src=/usr/src/debug/perl -flto=auto   -DVERSION=\"2.0210\" -DXS_VERSION=\"2.0210\" -fPIC "-I/usr/lib/perl5/5.40/core_perl/CORE"  -DHAVE_UTF8 Devel.c
Devel.xs: In function ‘xmlMemMallocAtomic’:
Devel.xs:36:5: warning: ‘xmlMallocAtomicLoc’ is deprecated [-Wdeprecated-declarations]
   36 |     return xmlMallocAtomicLoc(size, "none", 0);
      |     ^~~~~~
In file included from Devel.xs:28:
/usr/include/libxml2/libxml/xmlmemory.h:178:9: note: declared here
  178 |         xmlMallocAtomicLoc (size_t size, const char *file, int line) LIBXML_ATTR_ALLOC_SIZE(1);
      |         ^~~~~~~~~~~~~~~~~~
Devel.xs: In function ‘debug_memory’:
Devel.xs:41:5: warning: ‘xmlGcMemSetup’ is deprecated [-Wdeprecated-declarations]
   41 |     return xmlGcMemSetup( xmlMemFree,
      |     ^~~~~~
/usr/include/libxml2/libxml/xmlmemory.h:115:9: note: declared here
  115 |         xmlGcMemSetup   (xmlFreeFunc freeFunc,
      |         ^~~~~~~~~~~~~
"/usr/bin/perl" "/usr/share/perl5/core_perl/ExtUtils/xsubpp"  -typemap '/usr/share/perl5/core_perl/ExtUtils/typemap' -typemap '/home/summers/.cpan/build/XML-LibXML-2.0210-44/typemap'  LibXML.xs > LibXML.xsc
mv LibXML.xsc LibXML.c
cc -c  -I/usr/include/libxml2 -D_REENTRANT -D_GNU_SOURCE -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/include/db5.3 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=3 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -g -ffile-prefix-map=/build/perl/src=/usr/src/debug/perl -flto=auto   -DVERSION=\"2.0210\" -DXS_VERSION=\"2.0210\" -fPIC "-I/usr/lib/perl5/5.40/core_perl/CORE"  -DHAVE_UTF8 LibXML.c
LibXML.xs: In function ‘LibXML_load_external_entity’:
LibXML.xs:882:9: warning: ‘xmlParserInputBufferPush’ is deprecated [-Wdeprecated-declarations]
  882 |         if (-1 == xmlParserInputBufferPush(input_buf, int_results_len, results_pv)) {
      |         ^~
In file included from /usr/include/libxml2/libxml/parser.h:26,
                 from /usr/include/libxml2/libxml/HTMLparser.h:16,
                 from /usr/include/libxml2/libxml/globals.h:18,
                 from LibXML.xs:41:
/usr/include/libxml2/libxml/xmlIO.h:239:9: note: declared here
  239 |         xmlParserInputBufferPush                (xmlParserInputBufferPtr in,
      |         ^~~~~~~~~~~~~~~~~~~~~~~~
LibXML.xs: In function ‘LibXML_init_parser’:
LibXML.xs:959:13: warning: ‘linenumbers’ is deprecated [-Wdeprecated-declarations]
  959 |             if (ctxt) ctxt->linenumbers = 1;
      |             ^~
/usr/include/libxml2/libxml/parser.h:373:9: note: declared here
  373 |     int linenumbers XML_DEPRECATED_MEMBER;
      |         ^~~~~~~~~~~
LibXML.xs:962:13: warning: ‘linenumbers’ is deprecated [-Wdeprecated-declarations]
  962 |             if (ctxt) ctxt->linenumbers = 0;
      |             ^~
/usr/include/libxml2/libxml/parser.h:373:9: note: declared here
  373 |     int linenumbers XML_DEPRECATED_MEMBER;
      |         ^~~~~~~~~~~
LibXML.xs: In function ‘XS_XML__LibXML__parse_string’:
LibXML.xs:1770:13: warning: ‘validate’ is deprecated [-Wdeprecated-declarations]
 1770 |             validate = ctxt->validate;
      |             ^~~~~~~~
/usr/include/libxml2/libxml/parser.h:304:9: note: declared here
  304 |     int validate XML_DEPRECATED_MEMBER;
      |         ^~~~~~~~
LibXML.xs: In function ‘XS_XML__LibXML__parse_fh’:
LibXML.xs:1901:13: warning: ‘dictNames’ is deprecated [-Wdeprecated-declarations]
 1901 |             ctxt->dictNames = 0;
      |             ^~~~
/usr/include/libxml2/libxml/parser.h:426:9: note: declared here
  426 |     int dictNames XML_DEPRECATED_MEMBER;
      |         ^~~~~~~~~
LibXML.xs:1923:13: warning: ‘validate’ is deprecated [-Wdeprecated-declarations]
 1923 |             validate = ctxt->validate;
      |             ^~~~~~~~
/usr/include/libxml2/libxml/parser.h:304:9: note: declared here
  304 |     int validate XML_DEPRECATED_MEMBER;
      |         ^~~~~~~~
LibXML.xs: In function ‘XS_XML__LibXML__parse_file’:
LibXML.xs:2072:13: warning: ‘validate’ is deprecated [-Wdeprecated-declarations]
 2072 |             validate = ctxt->validate;
      |             ^~~~~~~~
/usr/include/libxml2/libxml/parser.h:304:9: note: declared here
  304 |     int validate XML_DEPRECATED_MEMBER;
      |         ^~~~~~~~
LibXML.xs: In function ‘XS_XML__LibXML__Dtd_parse_string’:
LibXML.xs:7306:9: warning: ‘xmlParserInputBufferPush’ is deprecated [-Wdeprecated-declarations]
 7306 |         xmlParserInputBufferPush(buffer, xmlStrlen(new_string), (const char*)new_string);
      |         ^~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/libxml2/libxml/xmlIO.h:239:9: note: declared here
  239 |         xmlParserInputBufferPush                (xmlParserInputBufferPtr in,
      |         ^~~~~~~~~~~~~~~~~~~~~~~~
LibXML.xs: In function ‘XS_XML__LibXML__Common_encodeToUTF8’:
LibXML.xs:9591:25: warning: ‘content’ is deprecated [-Wdeprecated-declarations]
 9591 |                         tstr = xmlStrdup( out->content );
      |                         ^~~~
In file included from /usr/include/libxml2/libxml/parser.h:16:
/usr/include/libxml2/libxml/tree.h:103:14: note: declared here
  103 |     xmlChar *content XML_DEPRECATED_MEMBER;
      |              ^~~~~~~
cc -c  -I/usr/include/libxml2 -D_REENTRANT -D_GNU_SOURCE -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/include/db5.3 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=3 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -g -ffile-prefix-map=/build/perl/src=/usr/src/debug/perl -flto=auto   -DVERSION=\"2.0210\" -DXS_VERSION=\"2.0210\" -fPIC "-I/usr/lib/perl5/5.40/core_perl/CORE"  -DHAVE_UTF8 dom.c
dom.c: In function ‘domGetNodeValue’:
dom.c:1020:21: warning: ‘content’ is deprecated [-Wdeprecated-declarations]
 1020 |                     if ( buffer->content != NULL ) {
      |                     ^~
In file included from /usr/include/libxml2/libxml/parser.h:16,
                 from /usr/include/libxml2/libxml/tree.h:17,
                 from dom.h:32,
                 from dom.c:9:
/usr/include/libxml2/libxml/tree.h:103:14: note: declared here
  103 |     xmlChar *content XML_DEPRECATED_MEMBER;
      |              ^~~~~~~
dom.c:1023:29: warning: ‘content’ is deprecated [-Wdeprecated-declarations]
 1023 |                             retval = xmlStrcat( retval, buffer->content );
      |                             ^~~~~~
/usr/include/libxml2/libxml/tree.h:103:14: note: declared here
  103 |     xmlChar *content XML_DEPRECATED_MEMBER;
      |              ^~~~~~~
dom.c:1026:29: warning: ‘content’ is deprecated [-Wdeprecated-declarations]
 1026 |                             retval = xmlStrdup( buffer->content );
      |                             ^~~~~~
/usr/include/libxml2/libxml/tree.h:103:14: note: declared here
  103 |     xmlChar *content XML_DEPRECATED_MEMBER;
      |              ^~~~~~~
cc -c  -I/usr/include/libxml2 -D_REENTRANT -D_GNU_SOURCE -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/include/db5.3 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=3 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -g -ffile-prefix-map=/build/perl/src=/usr/src/debug/perl -flto=auto   -DVERSION=\"2.0210\" -DXS_VERSION=\"2.0210\" -fPIC "-I/usr/lib/perl5/5.40/core_perl/CORE"  -DHAVE_UTF8 perl-libxml-mm.c
perl-libxml-mm.c: In function ‘PmmFastEncodeString’:
perl-libxml-mm.c:992:13: warning: ‘content’ is deprecated [-Wdeprecated-declarations]
  992 |             retval = xmlStrdup( out->content );
      |             ^~~~~~
In file included from /usr/include/libxml2/libxml/parser.h:16,
                 from perl-libxml-mm.h:20,
                 from perl-libxml-mm.c:26:
/usr/include/libxml2/libxml/tree.h:103:14: note: declared here
  103 |     xmlChar *content XML_DEPRECATED_MEMBER;
      |              ^~~~~~~
cc -c  -I/usr/include/libxml2 -D_REENTRANT -D_GNU_SOURCE -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/include/db5.3 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=3 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -g -ffile-prefix-map=/build/perl/src=/usr/src/debug/perl -flto=auto   -DVERSION=\"2.0210\" -DXS_VERSION=\"2.0210\" -fPIC "-I/usr/lib/perl5/5.40/core_perl/CORE"  -DHAVE_UTF8 perl-libxml-sax.c
perl-libxml-sax.c: In function ‘PmmUpdateLocator’:
perl-libxml-sax.c:863:5: warning: ‘encoding’ is deprecated [-Wdeprecated-declarations]
  863 |     encoding = ctxt->input->encoding;
      |     ^~~~~~~~
In file included from perl-libxml-sax.c:24:
/usr/include/libxml2/libxml/parser.h:110:20: note: declared here
  110 |     const xmlChar *encoding XML_DEPRECATED_MEMBER;
      |                    ^~~~~~~~
perl-libxml-sax.c:864:5: warning: ‘version’ is deprecated [-Wdeprecated-declarations]
  864 |     version = ctxt->input->version;
      |     ^~~~~~~
/usr/include/libxml2/libxml/parser.h:112:20: note: declared here
  112 |     const xmlChar *version XML_DEPRECATED_MEMBER;
      |                    ^~~~~~~
perl-libxml-sax.c: In function ‘PSaxStartDocument’:
perl-libxml-sax.c:967:9: warning: ‘encoding’ is deprecated [-Wdeprecated-declarations]
  967 |         if ( ctxt->input->encoding != NULL ) {
      |         ^~
/usr/include/libxml2/libxml/parser.h:110:20: note: declared here
  110 |     const xmlChar *encoding XML_DEPRECATED_MEMBER;
      |                    ^~~~~~~~
perl-libxml-sax.c:968:13: warning: ‘encoding’ is deprecated [-Wdeprecated-declarations]
  968 |             (void) hv_store(empty, "Encoding", 8,
      |             ^
/usr/include/libxml2/libxml/parser.h:110:20: note: declared here
  110 |     const xmlChar *encoding XML_DEPRECATED_MEMBER;
      |                    ^~~~~~~~
perl-libxml-sax.c: In function ‘PmmSaxError’:
perl-libxml-sax.c:1539:28: warning: initialization discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
 1539 |     xmlErrorPtr last_err = xmlCtxtGetLastError( ctxt );
      |                            ^~~~~~~~~~~~~~~~~~~
cc -c  -I/usr/include/libxml2 -D_REENTRANT -D_GNU_SOURCE -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/include/db5.3 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=3 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -g -ffile-prefix-map=/build/perl/src=/usr/src/debug/perl -flto=auto   -DVERSION=\"2.0210\" -DXS_VERSION=\"2.0210\" -fPIC "-I/usr/lib/perl5/5.40/core_perl/CORE"  -DHAVE_UTF8 xpath.c
rm -f blib/arch/auto/XML/LibXML/LibXML.so
LD_RUN_PATH="/usr/lib" cc  -shared -Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,-z,pack-relative-relocs -flto=auto -L/usr/lib/db5.3 -fstack-protector-strong  Av_CharPtrPtr.o Devel.o LibXML.o dom.o perl-libxml-mm.o perl-libxml-sax.o xpath.o  -o blib/arch/auto/XML/LibXML/LibXML.so  \
   -lxml2 -lz -llzma -licui18n -licuuc -licudata -lm   \
  
chmod 755 blib/arch/auto/XML/LibXML/LibXML.so
Manifying 34 pod documents
  SHLOMIF/XML-LibXML-2.0210.tar.gz
  /usr/bin/make -- OK
Running make test for SHLOMIF/XML-LibXML-2.0210.tar.gz
"/usr/bin/perl" -MExtUtils::Command::MM -e 'cp_nonempty' -- LibXML.bs blib/arch/auto/XML/LibXML/LibXML.bs 644
PERL_DL_NONLAZY=1 "/usr/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.t .............................. 1/1 # 
# Versions for all modules listed in MYMETA.json (including optional ones):
# 
# === Configure Requires ===
# 
#     Module               Want     Have
#     -------------------- ---- --------
#     Alien::Base::Wrapper  any     2.84
#     Alien::Libxml2       0.14     0.19
#     Config                any 5.040002
#     ExtUtils::MakeMaker   any     7.70
# 
# === Build Requires ===
# 
#     Module              Want Have
#     ------------------- ---- ----
#     ExtUtils::MakeMaker  any 7.70
# 
# === Test Requires ===
# 
#     Module       Want     Have
#     ------------ ---- --------
#     Config        any 5.040002
#     Errno         any     1.38
#     IO::File      any     1.55
#     IO::Handle    any     1.55
#     POSIX         any     2.20
#     Scalar::Util  any     1.63
#     Test::More    any 1.302199
#     locale        any     1.12
#     utf8          any     1.25
# 
# === Runtime Requires ===
# 
#     Module                    Want  Have
#     ------------------------- ---- -----
#     Carp                       any  1.54
#     DynaLoader                 any  1.56
#     Encode                     any  3.21
#     Exporter                  5.57  5.78
#     IO::Handle                 any  1.55
#     Scalar::Util               any  1.63
#     Tie::Hash                  any  1.06
#     XML::NamespaceSupport     1.07  1.12
#     XML::SAX                  0.11  1.02
#     XML::SAX::Base             any  1.09
#     XML::SAX::DocumentLocator  any undef
#     XML::SAX::Exception        any  1.09
#     base                       any  2.27
#     constant                   any  1.33
#     overload                   any  1.37
#     parent                     any 0.241
#     strict                     any  1.13
#     vars                       any  1.05
#     warnings                   any  1.70
# 
t/00-report-prereqs.t .............................. ok   
t/01basic.t ........................................ 1/3 # 
# 
# Compiled against libxml2 version: 21403
# Running libxml2 version:          21403
# 
t/01basic.t ........................................ ok   
t/02parse.t ........................................ 1/533 
#   Failed test 'error parsing <!DOCTYPE X SYSTEM "example/ext_ent.dtd">
# <X>&foo;</X>
# '
#   at t/02parse.t line 887.
#          got: ''
#     expected: anything else
# Looks like you failed 1 test of 533.
t/02parse.t ........................................ Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/533 subtests 
t/03doc.t .......................................... ok       
t/04node.t ......................................... ok       
t/05text.t ......................................... ok     
t/06elements.t ..................................... ok       
t/07dtd.t .......................................... ok     
t/08findnodes.t .................................... 1/45 
#   Failed test ' TODO : Add test name'
#   at t/08findnodes.t line 126.
#          got: '3'
#     expected: '2'
# Looks like you failed 1 test of 45.
t/08findnodes.t .................................... Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/45 subtests 
t/09xpath.t ........................................ 1/54 Argument "21403-GITv2.14.3" isn't numeric in numeric lt (<) at t/09xpath.t line 244.
Argument "21403-GITv2.14.3" isn't numeric in numeric lt (<) at t/09xpath.t line 244.
t/09xpath.t ........................................ ok     
t/10ns.t ........................................... ok       
t/11memory.t ....................................... skipped: These tests are for authors only!
t/12html.t ......................................... ok     
t/13dtd.t .......................................... ok     
t/14sax.t .......................................... ok     
t/15nodelist.t ..................................... ok     
t/16docnodes.t ..................................... 1/11 
#   Failed test 'Node serialise works.'
#   at t/16docnodes.t line 63.
#          got: '<test contents=""/>'
#     expected: '<test contents="&#xE4;"/>'
# Looks like you failed 1 test of 11.
t/16docnodes.t ..................................... Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/11 subtests 
t/17callbacks.t .................................... ok     
t/18docfree.t ...................................... ok   
t/19die_on_invalid_utf8_rt_58848.t ................. 1/1 
#   Failed test 'Parser error.'
#   at t/19die_on_invalid_utf8_rt_58848.t line 19.
#                   'example/thedieline.rss:26: I/O error : Invalid bytes in character encoding
# .com%2fblog%2f2010%2f06%2fginja-d-%25c3%25b3bidos.html&amp;t=Ginja+d%26%2339%3b+
#                                                                                 ^
# example/thedieline.rss:26: parser error : Entity 'ldquo' not defined
# log%2f2010%2f06%2fginja-d-%25c3%25b3bidos.html&amp;t=Ginja+d%26%2339%3b+&ldquo;
#                                                                                   ^
# example/thedieline.rss:26: parser error : Entity 'ldquo' not defined
# 2f2010%2f06%2fginja-d-%25c3%25b3bidos.html&amp;title=Ginja+d%26%2339%3b+&ldquo;
#                                                                                   ^
# example/thedieline.rss:26: parser error : Entity 'ldquo' not defined
# 2f2010%2f06%2fginja-d-%25c3%25b3bidos.html&amp;title=Ginja+d%26%2339%3b+&ldquo;
#                                                                                   ^
# example/thedieline.rss:26: parser error : Entity 'ldquo' not defined
# log%2f2010%2f06%2fginja-d-%25c3%25b3bidos.html&amp;t=Ginja+d%26%2339%3b+&ldquo;
#                                                                                   ^
# example/thedieline.rss:26: parser error : Entity 'ldquo' not defined
# 2f2010%2f06%2fginja-d-%25c3%25b3bidos.html&amp;title=Ginja+d%26%2339%3b+&ldquo;
#                                                                                   ^
# example/thedieline.rss:26: parser error : Entity 'ldquo' not defined
# 2f2010%2f06%2fginja-d-%25c3%25b3bidos.html&amp;title=Ginja+d%26%2339%3b+&ldquo;
#                                                                                   ^
# example/thedieline.rss:26: parser error : Entity 'ldquo' not defined
# This&quot; href=&quot;http://twitter.com/home?status=Ginja+d%26%2339%3b+&ldquo;
#                                                                                   ^
# '
#     doesn't match '(?^:parser error : Input is not proper UTF-8)'
# Looks like you failed 1 test of 1.
t/19die_on_invalid_utf8_rt_58848.t ................. Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/1 subtests 
t/19encoding.t ..................................... ok   
t/20extras.t ....................................... ok     
t/21catalog.t ...................................... ok   
t/23rawfunctions.t ................................. ok   
t/24c14n.t ......................................... ok     
t/25relaxng.t ...................................... 1/17 
#   Failed test 'RNG from file location with external import and no_network => 1 throws an exception.'
#   at t/25relaxng.t line 135.
#                   'I/O error : failed to load "http://example.com/xml.rng": Attempt to load network entity
# test/relaxng/net.rng:3: Relax-NG parser error : xmlRelaxNG: could not load http://example.com/xml.rng
# test/relaxng/net.rng:3: Relax-NG parser error : Failed to load include http://example.com/xml.rng
# '
#     doesn't match '(?^:I/O error : Attempt to load network entity)'

#   Failed test 'RNG from buffer with external import and no_network => 1 throws an exception.'
#   at t/25relaxng.t line 155.
#                   'I/O error : failed to load "http://example.com/xml.rng": Attempt to load network entity
# in_memory_buffer:3: Relax-NG parser error : xmlRelaxNG: could not load http://example.com/xml.rng
# in_memory_buffer:3: Relax-NG parser error : Failed to load include http://example.com/xml.rng
# '
#     doesn't match '(?^:I/O error : Attempt to load network entity)'
# Looks like you failed 2 tests of 17.
t/25relaxng.t ...................................... Dubious, test returned 2 (wstat 512, 0x200)
Failed 2/17 subtests 
t/26schema.t ....................................... 1/12 
#   Failed test 'Schema from file location with external import and no_network => 1 throws an exception.'
#   at t/26schema.t line 120.
#                   'I/O error : failed to load "http://example.com/xml.xsd": Attempt to load network entity
# '
#     doesn't match '(?^:I/O error : Attempt to load network entity)'

#   Failed test 'Schema from buffer with external import and no_network => 1 throws an exception.'
#   at t/26schema.t line 132.
#                   'I/O error : failed to load "http://example.com/xml.xsd": Attempt to load network entity
# '
#     doesn't match '(?^:I/O error : Attempt to load network entity)'
# Looks like you failed 2 tests of 12.
t/26schema.t ....................................... Dubious, test returned 2 (wstat 512, 0x200)
Failed 2/12 subtests 
t/27new_callbacks_simple.t ......................... ok     
t/28new_callbacks_multiple.t ....................... ok     
t/29id.t ........................................... ok     
t/30keep_blanks.t .................................. ok   
t/30xpathcontext.t ................................. ok     
t/31xpc_functions.t ................................ ok     
t/32xpc_variables.t ................................ ok     
t/35huge_mode.t .................................... ok   
t/40reader.t ....................................... ok       
t/40reader_mem_error.t ............................. Argument "21403-GITv2.14.3" isn't numeric in numeric lt (<) at t/40reader_mem_error.t line 353.
t/40reader_mem_error.t ............................. ok   
t/41xinclude.t ..................................... ok   
t/42common.t ....................................... ok     
t/43options.t ...................................... ok       
t/44extent.t ....................................... ok   
t/45regex.t ........................................ ok     
t/46err_column.t ................................... ok   
t/47load_xml_callbacks.t ........................... ok   
t/48_gh_pr63_detect_undef_values.t ................. ok   
t/48_memleak_rt_83744.t ............................ ok   
t/48_reader_undef_warning_on_empty_str_rt106830.t .. ok   
t/48_removeChild_crashes_rt_80395.t ................ ok   
t/48_replaceNode_DTD_nodes_rT_80521.t .............. ok   
t/48_RH5_double_free_rt83779.t ..................... ok   
t/48_rt123379_setNamespace.t ....................... ok   
t/48_rt55000.t ..................................... ok   
t/48_rt93429_recover_2_in_html_parsing.t ........... ok   
t/48_SAX_Builder_rt_91433.t ........................ ok   
t/48importing_nodes_IDs_rt_69520.t ................. ok   
t/49_load_html.t ................................... 1/3 
#   Failed test 'warning emitted'
#   at t/49_load_html.t line 65.
#                   ''
#     doesn't match '(?^:htmlParseEntityRef:)'
# Looks like you failed 1 test of 3.
t/49_load_html.t ................................... Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/3 subtests 
t/49callbacks_returning_undef.t .................... ok   
t/49global_extent.t ................................ ok   
t/50devel.t ........................................ ok     
t/51_parse_html_string_rt87089.t ................... ok   
t/60error_prev_chain.t ............................. Can't call method "_prev" without a package or object reference at t/60error_prev_chain.t line 38.
# Looks like your test exited with 255 before it could output anything.
t/60error_prev_chain.t ............................. Dubious, test returned 255 (wstat 65280, 0xff00)
Failed 1/1 subtests 
t/60struct_error.t ................................. ok   
t/61error.t ........................................ ok   
t/62overload.t ..................................... ok     
t/71overloads.t .................................... ok     
t/72destruction.t .................................. ok   
t/80registryleak.t ................................. ok   
t/90shared_clone_failed_rt_91800.t ................. skipped: optional (set THREAD_TEST=1 to run these tests)
t/90stack.t ........................................ ok   
t/90threads.t ...................................... skipped: optional (set THREAD_TEST=1 to run these tests)
t/91unique_key.t ................................... ok     
t/cpan-changes.t ................................... skipped: These tests are for authors only!
t/namespace-magic-scalar-rt144415.t ................ ok   
t/pod-files-presence.t ............................. skipped: only for AUTHORS
t/pod.t ............................................ skipped: These tests are for authors only!
t/release-kwalitee.t ............................... skipped: These tests are for authors only!
t/style-trailing-space.t ........................... skipped: These tests are for authors only!

Test Summary Report
-------------------
t/02parse.t                                      (Wstat: 256 (exited 1) Tests: 533 Failed: 1)
  Failed test:  511
  Non-zero exit status: 1
t/08findnodes.t                                  (Wstat: 256 (exited 1) Tests: 45 Failed: 1)
  Failed test:  14
  Non-zero exit status: 1
t/16docnodes.t                                   (Wstat: 256 (exited 1) Tests: 11 Failed: 1)
  Failed test:  10
  Non-zero exit status: 1
t/19die_on_invalid_utf8_rt_58848.t               (Wstat: 256 (exited 1) Tests: 1 Failed: 1)
  Failed test:  1
  Non-zero exit status: 1
t/25relaxng.t                                    (Wstat: 512 (exited 2) Tests: 17 Failed: 2)
  Failed tests:  14, 16
  Non-zero exit status: 2
t/26schema.t                                     (Wstat: 512 (exited 2) Tests: 12 Failed: 2)
  Failed tests:  9, 11
  Non-zero exit status: 2
t/49_load_html.t                                 (Wstat: 256 (exited 1) Tests: 3 Failed: 1)
  Failed test:  2
  Non-zero exit status: 1
t/60error_prev_chain.t                           (Wstat: 65280 (exited 255) Tests: 0 Failed: 0)
  Non-zero exit status: 255
  Parse errors: Bad plan.  You planned 1 tests but ran 0.
Files=77, Tests=2546,  4 wallclock secs ( 0.16 usr  0.07 sys +  3.55 cusr  0.50 csys =  4.28 CPU)
Result: FAIL
Failed 8/77 test programs. 9/2546 subtests failed.
make: *** [Makefile:1330: test_dynamic] Error 255
  SHLOMIF/XML-LibXML-2.0210.tar.gz
  /usr/bin/make test -- NOT OK
//hint// to see the cpan-testers results for installing this module, try:
  reports SHLOMIF/XML-LibXML-2.0210.tar.gz
Running install for module 'XML::LibXSLT'
Checksum for /home/summers/.cpan/sources/authors/id/S/SH/SHLOMIF/XML-LibXSLT-2.003000.tar.gz ok
Configuring S/SH/SHLOMIF/XML-LibXSLT-2.003000.tar.gz with Makefile.PL
running pkg-config libxslt... ok
looking for -lxslt... yes
looking for -lexslt... yes
running pkg-config libexslt... ok
Checking if your kit is complete...
Looks good
Warning: prerequisite XML::LibXML 1.70 not found.
Generating a Unix-style Makefile
Writing Makefile for XML::LibXSLT
Writing MYMETA.yml and MYMETA.json
  SHLOMIF/XML-LibXSLT-2.003000.tar.gz
  /usr/bin/perl Makefile.PL INSTALLDIRS=site -- OK
Running make for S/SH/SHLOMIF/XML-LibXSLT-2.003000.tar.gz
---- Unsatisfied dependencies detected during ----
----    SHLOMIF/XML-LibXSLT-2.003000.tar.gz   ----
    XML::LibXML [requires]
Running install for module 'XML::LibXML'
  SHLOMIF/XML-LibXML-2.0210.tar.gz
  Has already been unwrapped into directory /home/summers/.cpan/build/XML-LibXML-2.0210-44
  SHLOMIF/XML-LibXML-2.0210.tar.gz
  Has already been prepared
  SHLOMIF/XML-LibXML-2.0210.tar.gz
  Has already been made
  SHLOMIF/XML-LibXML-2.0210.tar.gz
  Won't repeat unsuccessful test during this command
  SHLOMIF/XML-LibXSLT-2.003000.tar.gz
  Has already been unwrapped into directory /home/summers/.cpan/build/XML-LibXSLT-2.003000-14
  SHLOMIF/XML-LibXSLT-2.003000.tar.gz
  Has already been prepared
Running make for S/SH/SHLOMIF/XML-LibXSLT-2.003000.tar.gz
Warning: Prerequisite 'XML::LibXML => 1.70' for 'SHLOMIF/XML-LibXSLT-2.003000.tar.gz' failed when processing 'SHLOMIF/XML-LibXML-2.0210.tar.gz' with 'make_test => NO'. Continuing, but chances to succeed are limited.
cp lib/XML/LibXSLT.pm blib/lib/XML/LibXSLT.pm
cp lib/XML/LibXSLT/Quick.pm blib/lib/XML/LibXSLT/Quick.pm
Running Mkbootstrap for LibXSLT ()
chmod 644 "LibXSLT.bs"
"/usr/bin/perl" -MExtUtils::Command::MM -e 'cp_nonempty' -- LibXSLT.bs blib/arch/auto/XML/LibXSLT/LibXSLT.bs 644
"/usr/bin/perl" "/usr/share/perl5/core_perl/ExtUtils/xsubpp"  -typemap '/usr/share/perl5/core_perl/ExtUtils/typemap' -typemap '/home/summers/.cpan/build/XML-LibXSLT-2.003000-14/typemap'  LibXSLT.xs > LibXSLT.xsc
mv LibXSLT.xsc LibXSLT.c
cc -c  -I/usr/include/libxml2 -I/usr/include/libxml2 -D_REENTRANT -D_GNU_SOURCE -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/include/db5.3 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=3 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -g -ffile-prefix-map=/build/perl/src=/usr/src/debug/perl -flto=auto   -DVERSION=\"2.003000\" -DXS_VERSION=\"2.003000\" -fPIC "-I/usr/lib/perl5/5.40/core_perl/CORE"  -DHAVE_BLANK -DHAVE_BLANK -DHAVE_EXSLT LibXSLT.c
LibXSLT.xs: In function ‘XS_XML__LibXSLT__Stylesheet__output_string’:
LibXSLT.xs:1241:18: warning: ‘name’ is deprecated [-Wdeprecated-declarations]
 1241 |                  (xmlStrEqual((const xmlChar *)encoder->name,
      |                  ^
In file included from /usr/include/libxml2/libxml/parser.h:25,
                 from /usr/include/libxml2/libxml/tree.h:17,
                 from /usr/include/libxslt/xslt.h:13,
                 from LibXSLT.xs:13:
/usr/include/libxml2/libxml/encoding.h:169:11: note: declared here
  169 |     char *name XML_DEPRECATED_MEMBER;
      |           ^~~~
LibXSLT.xs: In function ‘XS_XML__LibXSLT__Stylesheet_output_fh’:
LibXSLT.xs:1286:18: warning: ‘name’ is deprecated [-Wdeprecated-declarations]
 1286 |                  (xmlStrEqual((const xmlChar *)encoder->name,
      |                  ^
/usr/include/libxml2/libxml/encoding.h:169:11: note: declared here
  169 |     char *name XML_DEPRECATED_MEMBER;
      |           ^~~~
cc -c  -I/usr/include/libxml2 -I/usr/include/libxml2 -D_REENTRANT -D_GNU_SOURCE -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/include/db5.3 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=3 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -g -ffile-prefix-map=/build/perl/src=/usr/src/debug/perl -flto=auto   -DVERSION=\"2.003000\" -DXS_VERSION=\"2.003000\" -fPIC "-I/usr/lib/perl5/5.40/core_perl/CORE"  -DHAVE_BLANK -DHAVE_BLANK -DHAVE_EXSLT perl-libxml-mm.c
rm -f blib/arch/auto/XML/LibXSLT/LibXSLT.so
LD_RUN_PATH="/usr/lib" cc  -shared -Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,-z,pack-relative-relocs -flto=auto -L/usr/lib/db5.3 -fstack-protector-strong  LibXSLT.o perl-libxml-mm.o  -o blib/arch/auto/XML/LibXSLT/LibXSLT.so  \
   -lxslt -lxml2 -lz -lm -lexslt -lxml2   \
  
chmod 755 blib/arch/auto/XML/LibXSLT/LibXSLT.so
Manifying 2 pod documents
  SHLOMIF/XML-LibXSLT-2.003000.tar.gz
  /usr/bin/make -- OK
Running make test for SHLOMIF/XML-LibXSLT-2.003000.tar.gz
"/usr/bin/perl" -MExtUtils::Command::MM -e 'cp_nonempty' -- LibXSLT.bs blib/arch/auto/XML/LibXSLT/LibXSLT.bs 644
PERL_DL_NONLAZY=1 "/usr/bin/perl" "-MExtUtils::Command::MM" "-MTest::Harness" "-e" "undef *Test::Harness::Switches; test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/01basic.t ............... Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/arch /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
Compilation failed in require at t/01basic.t line 8.
BEGIN failed--compilation aborted at t/01basic.t line 8.
# Looks like your test exited with 2 before it could output anything.
t/01basic.t ............... Dubious, test returned 2 (wstat 512, 0x200)
Failed 2/2 subtests 
t/02dromeds.t ............. Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/arch /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
Compilation failed in require at t/02dromeds.t line 6.
BEGIN failed--compilation aborted at t/02dromeds.t line 6.
# Looks like your test exited with 2 before it could output anything.
t/02dromeds.t ............. Dubious, test returned 2 (wstat 512, 0x200)
Failed 6/6 subtests 
t/03input.t ............... Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/arch /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
Compilation failed in require at t/03input.t line 6.
BEGIN failed--compilation aborted at t/03input.t line 6.
# Looks like your test exited with 2 before it could output anything.
t/03input.t ............... Dubious, test returned 2 (wstat 512, 0x200)
Failed 28/28 subtests 
t/04params.t .............. Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/arch /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
Compilation failed in require at t/04params.t line 7.
BEGIN failed--compilation aborted at t/04params.t line 7.
# Looks like your test exited with 2 before it could output anything.
t/04params.t .............. Dubious, test returned 2 (wstat 512, 0x200)
Failed 7/7 subtests 
t/05quick.t ............... Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/arch /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
Compilation failed in require at t/05quick.t line 8.
BEGIN failed--compilation aborted at t/05quick.t line 8.
# Looks like your test exited with 2 before it could output anything.
t/05quick.t ............... Dubious, test returned 2 (wstat 512, 0x200)
Failed 12/12 subtests 
t/06entities.t ............ Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/arch /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at t/06entities.t line 6.
BEGIN failed--compilation aborted at t/06entities.t line 6.
# Looks like your test exited with 2 before it could output anything.
t/06entities.t ............ Dubious, test returned 2 (wstat 512, 0x200)
Failed 2/2 subtests 
t/06output.t .............. Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/arch /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
Compilation failed in require at t/06output.t line 7.
BEGIN failed--compilation aborted at t/06output.t line 7.
# Looks like your test exited with 2 before it could output anything.
t/06output.t .............. Dubious, test returned 2 (wstat 512, 0x200)
Failed 28/28 subtests 
t/07blankdoc.t ............ Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/arch /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
Compilation failed in require at t/07blankdoc.t line 6.
BEGIN failed--compilation aborted at t/07blankdoc.t line 6.
# Looks like your test exited with 2 before it could output anything.
t/07blankdoc.t ............ Dubious, test returned 2 (wstat 512, 0x200)
Failed 5/5 subtests 
t/08literal.t ............. Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/arch /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
Compilation failed in require at t/08literal.t line 6.
BEGIN failed--compilation aborted at t/08literal.t line 6.
# Looks like your test exited with 2 before it could output anything.
t/08literal.t ............. Dubious, test returned 2 (wstat 512, 0x200)
Failed 8/8 subtests 
t/09exslt.t ............... Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/arch /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
Compilation failed in require at t/09exslt.t line 6.
BEGIN failed--compilation aborted at t/09exslt.t line 6.
t/09exslt.t ............... Dubious, test returned 2 (wstat 512, 0x200)
No subtests run 
t/10functions.t ........... Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/arch /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
Compilation failed in require at t/10functions.t line 6.
BEGIN failed--compilation aborted at t/10functions.t line 6.
# Looks like your test exited with 2 before it could output anything.
t/10functions.t ........... Dubious, test returned 2 (wstat 512, 0x200)
Failed 39/39 subtests 
t/11utf8.t ................ Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/arch /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
Compilation failed in require at t/11utf8.t line 8.
BEGIN failed--compilation aborted at t/11utf8.t line 8.
# Looks like your test exited with 2 before it could output anything.
t/11utf8.t ................ Dubious, test returned 2 (wstat 512, 0x200)
Failed 32/32 subtests 
t/12import.t .............. Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/arch /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
Compilation failed in require at t/12import.t line 15.
BEGIN failed--compilation aborted at t/12import.t line 15.
t/12import.t .............. 1/6 
#   Failed test 'Everything was properly loaded.'
#   at /usr/share/perl5/core_perl/Test/Builder.pm line 193.
# Looks like your test exited with 2 just after 1.
t/12import.t .............. Dubious, test returned 2 (wstat 512, 0x200)
Failed 6/6 subtests 
t/13error.t ............... Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/arch /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
Compilation failed in require at t/13error.t line 9.
BEGIN failed--compilation aborted at t/13error.t line 9.
# Looks like your test exited with 2 before it could output anything.
t/13error.t ............... Dubious, test returned 2 (wstat 512, 0x200)
Failed 28/28 subtests 
t/14security.t ............ Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/arch /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
Compilation failed in require at t/14security.t line 6.
BEGIN failed--compilation aborted at t/14security.t line 6.
# Looks like your test exited with 2 before it could output anything.
t/14security.t ............ Dubious, test returned 2 (wstat 512, 0x200)
Failed 26/26 subtests 
t/15misc.t ................ Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/arch /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at t/15misc.t line 9.
BEGIN failed--compilation aborted at t/15misc.t line 9.
# Looks like your test exited with 2 before it could output anything.
t/15misc.t ................ Dubious, test returned 2 (wstat 512, 0x200)
Failed 4/4 subtests 
t/cpan-changes.t .......... skipped: Test::CPAN::Changes required for this test
t/pod.t ................... skipped: Test::Pod 1.14 required for testing POD
t/rt71345_a.t ............. Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/arch /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
Compilation failed in require at t/rt71345_a.t line 9.
BEGIN failed--compilation aborted at t/rt71345_a.t line 9.
# Looks like your test exited with 2 before it could output anything.
t/rt71345_a.t ............. Dubious, test returned 2 (wstat 512, 0x200)
Failed 2/2 subtests 
t/rt71345_b.t ............. Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/arch /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
Compilation failed in require at t/rt71345_b.t line 9.
BEGIN failed--compilation aborted at t/rt71345_b.t line 9.
# Looks like your test exited with 2 before it could output anything.
t/rt71345_b.t ............. Dubious, test returned 2 (wstat 512, 0x200)
Failed 2/2 subtests 
t/style-trailing-space.t .. skipped: Test::TrailingSpace required for trailing space test.
t/using-quick-wrapper.t ... Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/arch /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at t/using-quick-wrapper.t line 8.
BEGIN failed--compilation aborted at t/using-quick-wrapper.t line 8.
# Looks like your test exited with 2 before it could output anything.
t/using-quick-wrapper.t ... Dubious, test returned 2 (wstat 512, 0x200)
Failed 29/29 subtests 
t/xml-grammar-failures.t .. Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/arch /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-LibXSLT-2.003000-14/blib/lib/XML/LibXSLT.pm line 21.
Compilation failed in require at t/xml-grammar-failures.t line 16.
BEGIN failed--compilation aborted at t/xml-grammar-failures.t line 16.
# Looks like your test exited with 2 before it could output anything.
t/xml-grammar-failures.t .. Dubious, test returned 2 (wstat 512, 0x200)
Failed 1/1 subtests 

Test Summary Report
-------------------
t/01basic.t             (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 2 tests but ran 0.
t/02dromeds.t           (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 6 tests but ran 0.
t/03input.t             (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 28 tests but ran 0.
t/04params.t            (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 7 tests but ran 0.
t/05quick.t             (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 12 tests but ran 0.
t/06entities.t          (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 2 tests but ran 0.
t/06output.t            (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 28 tests but ran 0.
t/07blankdoc.t          (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 5 tests but ran 0.
t/08literal.t           (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 8 tests but ran 0.
t/09exslt.t             (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: No plan found in TAP output
t/10functions.t         (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 39 tests but ran 0.
t/11utf8.t              (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 32 tests but ran 0.
t/12import.t            (Wstat: 512 (exited 2) Tests: 1 Failed: 1)
  Failed test:  1
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 6 tests but ran 1.
t/13error.t             (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 28 tests but ran 0.
t/14security.t          (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 26 tests but ran 0.
t/15misc.t              (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 4 tests but ran 0.
t/rt71345_a.t           (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 2 tests but ran 0.
t/rt71345_b.t           (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 2 tests but ran 0.
t/using-quick-wrapper.t (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 29 tests but ran 0.
t/xml-grammar-failures.t (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 1 tests but ran 0.
Files=23, Tests=1,  1 wallclock secs ( 0.03 usr  0.02 sys +  0.66 cusr  0.10 csys =  0.81 CPU)
Result: FAIL
Failed 20/23 test programs. 1/1 subtests failed.
make: *** [Makefile:1070: test_dynamic] Error 2
  SHLOMIF/XML-LibXSLT-2.003000.tar.gz
one dependency not OK (XML::LibXML); additionally test harness failed
  /usr/bin/make test -- NOT OK
//hint// to see the cpan-testers results for installing this module, try:
  reports SHLOMIF/XML-LibXSLT-2.003000.tar.gz
  SHLOMIF/XML-Grammar-ProductsSyndication-0.0406.tar.gz
  Has already been unwrapped into directory /home/summers/.cpan/build/XML-Grammar-ProductsSyndication-0.0406-11
  SHLOMIF/XML-Grammar-ProductsSyndication-0.0406.tar.gz
  Has already been prepared
Running Build for S/SH/SHLOMIF/XML-Grammar-ProductsSyndication-0.0406.tar.gz
Warning: Prerequisite 'XML::LibXML => 0' for 'SHLOMIF/XML-Grammar-ProductsSyndication-0.0406.tar.gz' failed when processing 'SHLOMIF/XML-LibXML-2.0210.tar.gz' with 'make_test => NO'. Continuing, but chances to succeed are limited.
Warning: Prerequisite 'XML::LibXSLT => 0' for 'SHLOMIF/XML-Grammar-ProductsSyndication-0.0406.tar.gz' failed when processing 'SHLOMIF/XML-LibXSLT-2.003000.tar.gz' with 'make_test => NO one dependency not OK (XML::LibXML); additionally test harness failed'. Continuing, but chances to succeed are limited.
Building XML-Grammar-ProductsSyndication
  SHLOMIF/XML-Grammar-ProductsSyndication-0.0406.tar.gz
  ./Build -- OK
Running Build test for SHLOMIF/XML-Grammar-ProductsSyndication-0.0406.tar.gz
t/00-load.t ..................... 1/1 
#   Failed test 'use XML::Grammar::ProductsSyndication;'
#   at t/00-load.t line 6.
#     Tried to use 'XML::Grammar::ProductsSyndication'.
#     Error:  Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-Grammar-ProductsSyndication-0.0406-11/blib/lib /home/summers/.cpan/build/XML-Grammar-ProductsSyndication-0.0406-11/blib/arch inc ./inc /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl) at /home/summers/.cpan/build/XML-Grammar-ProductsSyndication-0.0406-11/blib/lib/XML/Grammar/ProductsSyndication.pm line 12.
# BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-Grammar-ProductsSyndication-0.0406-11/blib/lib/XML/Grammar/ProductsSyndication.pm line 12.
# Compilation failed in require at t/00-load.t line 6.
# BEGIN failed--compilation aborted at t/00-load.t line 6.
# Testing XML::Grammar::ProductsSyndication , Perl 5.040002, /usr/bin/perl
# Looks like you failed 1 test of 1.
t/00-load.t ..................... Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/1 subtests 
t/01-validate.t ................. Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-Grammar-ProductsSyndication-0.0406-11/blib/lib /home/summers/.cpan/build/XML-Grammar-ProductsSyndication-0.0406-11/blib/arch inc ./inc /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at /home/summers/.cpan/build/XML-Grammar-ProductsSyndication-0.0406-11/blib/lib/XML/Grammar/ProductsSyndication.pm line 12.
BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-Grammar-ProductsSyndication-0.0406-11/blib/lib/XML/Grammar/ProductsSyndication.pm line 12.
Compilation failed in require at t/01-validate.t line 8.
BEGIN failed--compilation aborted at t/01-validate.t line 8.
# Looks like your test exited with 2 before it could output anything.
t/01-validate.t ................. Dubious, test returned 2 (wstat 512, 0x200)
Failed 13/13 subtests 
t/02-xslt-output.t .............. Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: /home/summers/.cpan/build/XML-Grammar-ProductsSyndication-0.0406-11/blib/lib /home/summers/.cpan/build/XML-Grammar-ProductsSyndication-0.0406-11/blib/arch inc ./inc /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at /home/summers/.cpan/build/XML-Grammar-ProductsSyndication-0.0406-11/blib/lib/XML/Grammar/ProductsSyndication.pm line 12.
BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-Grammar-ProductsSyndication-0.0406-11/blib/lib/XML/Grammar/ProductsSyndication.pm line 12.
Compilation failed in require at t/02-xslt-output.t line 9.
BEGIN failed--compilation aborted at t/02-xslt-output.t line 9.
# Looks like your test exited with 2 before it could output anything.
t/02-xslt-output.t .............. Dubious, test returned 2 (wstat 512, 0x200)
Failed 13/13 subtests 
t/03-dload-imgs.t ............... Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: t/lib /home/summers/.cpan/build/XML-Grammar-ProductsSyndication-0.0406-11/blib/lib /home/summers/.cpan/build/XML-Grammar-ProductsSyndication-0.0406-11/blib/arch inc ./inc /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at /home/summers/.cpan/build/XML-Grammar-ProductsSyndication-0.0406-11/blib/lib/XML/Grammar/ProductsSyndication.pm line 12.
BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-Grammar-ProductsSyndication-0.0406-11/blib/lib/XML/Grammar/ProductsSyndication.pm line 12.
Compilation failed in require at t/03-dload-imgs.t line 15.
BEGIN failed--compilation aborted at t/03-dload-imgs.t line 15.
# Looks like your test exited with 2 before it could output anything.
t/03-dload-imgs.t ............... Dubious, test returned 2 (wstat 512, 0x200)
Failed 5/5 subtests 
t/04-dont-dload-disable-imsg.t .. Can't locate XML/LibXML.pm in @INC (you may need to install the XML::LibXML module) (@INC entries checked: t/lib /home/summers/.cpan/build/XML-Grammar-ProductsSyndication-0.0406-11/blib/lib /home/summers/.cpan/build/XML-Grammar-ProductsSyndication-0.0406-11/blib/arch inc ./inc /usr/lib/perl5/5.40/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/5.40/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/5.40/core_perl /usr/share/perl5/core_perl .) at /home/summers/.cpan/build/XML-Grammar-ProductsSyndication-0.0406-11/blib/lib/XML/Grammar/ProductsSyndication.pm line 12.
BEGIN failed--compilation aborted at /home/summers/.cpan/build/XML-Grammar-ProductsSyndication-0.0406-11/blib/lib/XML/Grammar/ProductsSyndication.pm line 12.
Compilation failed in require at t/04-dont-dload-disable-imsg.t line 14.
BEGIN failed--compilation aborted at t/04-dont-dload-disable-imsg.t line 14.
# Looks like your test exited with 2 before it could output anything.
t/04-dont-dload-disable-imsg.t .. Dubious, test returned 2 (wstat 512, 0x200)
Failed 1/1 subtests 
t/boilerplate.t ................. ok   
t/cpan-changes.t ................ skipped: Test::CPAN::Changes required for this test
t/pod-coverage.t ................ skipped: Test::Pod::Coverage 1.04 required for testing POD coverage
t/pod.t ......................... skipped: Test::Pod 1.14 required for testing POD

Test Summary Report
-------------------
t/00-load.t                   (Wstat: 256 (exited 1) Tests: 1 Failed: 1)
  Failed test:  1
  Non-zero exit status: 1
t/01-validate.t               (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 13 tests but ran 0.
t/02-xslt-output.t            (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 13 tests but ran 0.
t/03-dload-imgs.t             (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 5 tests but ran 0.
t/04-dont-dload-disable-imsg.t (Wstat: 512 (exited 2) Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 1 tests but ran 0.
Files=9, Tests=4,  1 wallclock secs ( 0.01 usr  0.01 sys +  0.27 cusr  0.05 csys =  0.34 CPU)
Result: FAIL
Failed 5/9 test programs. 1/4 subtests failed.
  SHLOMIF/XML-Grammar-ProductsSyndication-0.0406.tar.gz
2 dependencies missing (XML::LibXML,XML::LibXSLT); additionally test harness failed
  ./Build test -- NOT OK
//hint// to see the cpan-testers results for installing this module, try:
  reports SHLOMIF/XML-Grammar-ProductsSyndication-0.0406.tar.gz
Running install for module 'XML::LibXSLT'
  SHLOMIF/XML-LibXSLT-2.003000.tar.gz
  Has already been unwrapped into directory /home/summers/.cpan/build/XML-LibXSLT-2.003000-14
  SHLOMIF/XML-LibXSLT-2.003000.tar.gz
  Has already been prepared
  SHLOMIF/XML-LibXSLT-2.003000.tar.gz
  Has already been made
  SHLOMIF/XML-LibXSLT-2.003000.tar.gz
  Has already been tested within this command
Running install for module 'XML::LibXML'
  SHLOMIF/XML-LibXML-2.0210.tar.gz
  Has already been unwrapped into directory /home/summers/.cpan/build/XML-LibXML-2.0210-44
  SHLOMIF/XML-LibXML-2.0210.tar.gz
  Has already been prepared
  SHLOMIF/XML-LibXML-2.0210.tar.gz
  Has already been made
  SHLOMIF/XML-LibXML-2.0210.tar.gz
  Has already been tested within this command

Offline

Board footer

Powered by FluxBB