Parser-LR v20191109 Perl 5 v5.30.1 x86_64-linux
- Status
- Fail
- From
- Chris Williams (BINGOS)
- Dist
-
Parser-LR v20191109
- Platform
- Perl 5 v5.30.1 x86_64-linux
- Date
- 2019-11-12 01:01:00
- ID
- e4672700-04e7-11ea-9066-e374b0ba08e8
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 PRBRENAN,
This is a computer-generated error report created automatically by
CPANPLUS, version 0.9178. Testers personal comments may appear
at the end of this report.
Thank you for uploading your work to CPAN. However, it appears that
there were some problems testing your distribution.
TEST RESULTS:
Below is the error stack from stage 'make test':
You tried to plan twice at (eval 75) line 1.
at /home/cpan/pit/jail/oa1_veBh2C/lib/perl5/Data/Table/Text.pm line 3576, <DATA> line 285.
Data::Table::Text::__ANON__("You tried to plan twice at (eval 75) line 1.\x{a}") called at /home/cpan/pit/bare/perl-5.30.1/lib/site_perl/5.30.1/Test2/EventFacet/Trace.pm line 68
Test2::EventFacet::Trace::throw(Test2::EventFacet::Trace=HASH(0x55f8d3cb1c40), "You tried to plan twice") called at /home/cpan/pit/bare/perl-5.30.1/lib/site_perl/5.30.1/Test2/API/Context.pm line 201
Test2::API::Context::throw(Test2::API::Context=HASH(0x55f8d3cd5e60), "You tried to plan twice") called at /home/cpan/pit/bare/perl-5.30.1/lib/site_perl/5.30.1/Test/Builder.pm line 461
Test::Builder::plan(Test::Builder=HASH(0x55f8d37bda30), "tests", 29) called at /home/cpan/pit/bare/perl-5.30.1/lib/site_perl/5.30.1/Test/Builder/Module.pm line 92
Test::Builder::Module::import("tests", 29) called at (eval 75) line 1
Parser::LR::BEGIN() called at (eval 75) line 1
eval {...} called at (eval 75) line 1
eval 'use Test::More tests=>29;
#goto latestTest;
if (1) { #TprintGrammar
my $g = compileGrammar(<<END);
A a A
A a
END
my $tree = parseWithGrammar($g, qw(a a));
ok printParseTree($tree) eq <<END;
Rule Symbol Input
1 0 A
2 a 0
3 1 A
4 a 1
END
ok $g->start eq q(A);
ok $g->dfa->print eq <<END;
State Final Symbol Target Final
1 0 1 A 1 1
2 a 0 1
3 1 1
END
ok $g->nfa->print eq <<END;
Location F Transitions Jumps
0 undef [1, 5]
1 { a => 2 } undef
2 undef [3]
3 { A => 4 } [0]
4 1 undef undef
5 { a => 6 } undef
6 1 undef undef
END
ok $g->printGrammar eq <<END;
Rule Symbol Expansion
1 0 A a A
2 1 A a
END
}
if (1) { #TparseWithGrammar
my $g = compileGrammar(<<END);
A a A
A
END
my $tree = parseWithGrammar($g, qw(a a a));
ok printParseTree($tree) eq <<END;
Rule Symbol Input
1 1 A
2 a 0
3 a 1
4 a 2
END
ok $g->start eq q(A);
ok $g->dfa->print eq <<END;
State Final Symbol Target Final
1 0 1 a 1 1
2 1 1 A 2 1
3 a 1 1
4 2 1
END
ok $g->nfa->print eq <<END;
Location F Transitions Jumps
0 1 undef [1]
1 { a => 2 } undef
2 undef [3]
3 { A => 4 } [0]
4 1 undef undef
END
ok $g->printGrammar eq <<END;
Rule Symbol Expansion
1 0 A a A
2 1 A
END
}
if (1) { #TprintParseTreeAsXml
my $g = compileGrammar(<<END);
A A a
A a
END
my $tree = parseWithGrammar($g, qw(a a a));
ok printParseTree($tree) eq <<END;
Rule Symbol Input
1 0 A
2 0 A
3 1 A
4 a 0
5 a 1
6 a 2
END
ok printParseTreeAsXml($tree) eq <<END;
<A rule="0">
<A rule="0">
<A rule="1">
<a id="0"/>
</A>
<a id="1"/>
</A>
<a id="2"/>
</A>
END
ok $g->start eq q(A);
ok $g->dfa->print eq <<END;
State Final Symbol Target Final
1 0 A 1 0
2 a 3 1
3 1 a 2 1
4 2 1
5 3 1
END
ok $g->nfa->print eq <<END;
Location F Transitions Jumps
0 undef [1, 5]
1 { A => 2 } [0]
2 undef [3]
3 { a => 4 } undef
4 1 undef undef
5 { a => 6 } undef
6 1 undef undef
END
ok $g->printGrammar eq <<END;
Rule Symbol Expansion
1 0 A A a
2 1 A a
END
}
if (1) { #TcompileGrammar
my $g = compileGrammar(<<END);
A A a
A
END
my $t0 = parseWithGrammar($g, qw());
ok !printParseTree($t0);
ok !$t0;
my $t1 = parseWithGrammar($g, qw(a));
ok printParseTree($t1) eq <<END;
Rule Symbol Input
1 0 A
2 1 A
3 a 0
END
my $t3 = parseWithGrammar($g, qw(a a a));
ok printParseTree($t3) eq <<END;
Rule Symbol Input
1 0 A
2 0 A
3 0 A
4 1 A
5 a 0
6 a 1
7 a 2
END
ok $g->dfa->print eq <<END;
State Final Symbol Target Final
1 0 1 A 1 0
2 1 a 2 1
3 2 1
END
ok $g->nfa->print eq <<END;
Location F Transitions Jumps
0 1 undef [1]
1 { A => 2 } [0]
2 undef [3]
3 { a => 4 } undef
4 1 undef undef
END
ok $g->printGrammar eq <<END;
Rule Symbol Expansion
1 0 A A a
2 1 A
END
}
if (1) { #TprintParseTree
my $g = compileGrammar(<<END);
A a A b
A c
END
my $tree = parseWithGrammar($g, qw(a a c b b));
ok printParseTree($tree) eq <<END;
Rule Symbol Input
1 0 A
2 a 0
3 0 A
4 a 1
5 1 A
6 c 2
7 b 3
8 b 4
END
ok printGrammarAsXml($g) eq <<END;
<grammar>
<A id="0">
<a/>
<A/>
<b/>
</A>
<A id="1">
<c/>
</A>
</grammar>
END
ok $g->start eq q(A);
}
latestTest:;
if (1) { #TprintGrammarAsXml
my $g = compileGrammar(<<END);
A B a
B B b
B
END
my $tree = parseWithGrammar($g, qw(b b a));
ok printParseTree($tree) eq <<END;
Rule Symbol Input
1 0 A
2 1 B
3 1 B
4 2 B
5 b 0
6 b 1
7 a 2
END
ok printGrammarAsXml($g) eq <<END;
<grammar>
<A id="0">
<B/>
<a/>
</A>
<B id="1">
<B/>
<b/>
</B>
<B id="2">
</B>
</grammar>
END
ok $g->start eq q(A);
}
done_testing;
=pod
printParseTreeAndGrammarAsXml 1
=cut
' called at lib/Parser/LR.pm line 766
Parser::LR::test("Parser::LR") called at test.pl line 11
BEGIN failed--compilation aborted at (eval 75) line 1, <DATA> line 285.
at /home/cpan/pit/jail/oa1_veBh2C/lib/perl5/Data/Table/Text.pm line 3576, <DATA> line 285.
Data::Table::Text::__ANON__("You tried to plan twice at (eval 75) line 1.\x{a} at /home/cpan/p"...) called at (eval 75) line 1
eval 'use Test::More tests=>29;
#goto latestTest;
if (1) { #TprintGrammar
my $g = compileGrammar(<<END);
A a A
A a
END
my $tree = parseWithGrammar($g, qw(a a));
ok printParseTree($tree) eq <<END;
Rule Symbol Input
1 0 A
2 a 0
3 1 A
4 a 1
END
ok $g->start eq q(A);
ok $g->dfa->print eq <<END;
State Final Symbol Target Final
1 0 1 A 1 1
2 a 0 1
3 1 1
END
ok $g->nfa->print eq <<END;
Location F Transitions Jumps
0 undef [1, 5]
1 { a => 2 } undef
2 undef [3]
3 { A => 4 } [0]
4 1 undef undef
5 { a => 6 } undef
6 1 undef undef
END
ok $g->printGrammar eq <<END;
Rule Symbol Expansion
1 0 A a A
2 1 A a
END
}
if (1) { #TparseWithGrammar
my $g = compileGrammar(<<END);
A a A
A
END
my $tree = parseWithGrammar($g, qw(a a a));
ok printParseTree($tree) eq <<END;
Rule Symbol Input
1 1 A
2 a 0
3 a 1
4 a 2
END
ok $g->start eq q(A);
ok $g->dfa->print eq <<END;
State Final Symbol Target Final
1 0 1 a 1 1
2 1 1 A 2 1
3 a 1 1
4 2 1
END
ok $g->nfa->print eq <<END;
Location F Transitions Jumps
0 1 undef [1]
1 { a => 2 } undef
2 undef [3]
3 { A => 4 } [0]
4 1 undef undef
END
ok $g->printGrammar eq <<END;
Rule Symbol Expansion
1 0 A a A
2 1 A
END
}
if (1) { #TprintParseTreeAsXml
my $g = compileGrammar(<<END);
A A a
A a
END
my $tree = parseWithGrammar($g, qw(a a a));
ok printParseTree($tree) eq <<END;
Rule Symbol Input
1 0 A
2 0 A
3 1 A
4 a 0
5 a 1
6 a 2
END
ok printParseTreeAsXml($tree) eq <<END;
<A rule="0">
<A rule="0">
<A rule="1">
<a id="0"/>
</A>
<a id="1"/>
</A>
<a id="2"/>
</A>
END
ok $g->start eq q(A);
ok $g->dfa->print eq <<END;
State Final Symbol Target Final
1 0 A 1 0
2 a 3 1
3 1 a 2 1
4 2 1
5 3 1
END
ok $g->nfa->print eq <<END;
Location F Transitions Jumps
0 undef [1, 5]
1 { A => 2 } [0]
2 undef [3]
3 { a => 4 } undef
4 1 undef undef
5 { a => 6 } undef
6 1 undef undef
END
ok $g->printGrammar eq <<END;
Rule Symbol Expansion
1 0 A A a
2 1 A a
END
}
if (1) { #TcompileGrammar
my $g = compileGrammar(<<END);
A A a
A
END
my $t0 = parseWithGrammar($g, qw());
ok !printParseTree($t0);
ok !$t0;
my $t1 = parseWithGrammar($g, qw(a));
ok printParseTree($t1) eq <<END;
Rule Symbol Input
1 0 A
2 1 A
3 a 0
END
my $t3 = parseWithGrammar($g, qw(a a a));
ok printParseTree($t3) eq <<END;
Rule Symbol Input
1 0 A
2 0 A
3 0 A
4 1 A
5 a 0
6 a 1
7 a 2
END
ok $g->dfa->print eq <<END;
State Final Symbol Target Final
1 0 1 A 1 0
2 1 a 2 1
3 2 1
END
ok $g->nfa->print eq <<END;
Location F Transitions Jumps
0 1 undef [1]
1 { A => 2 } [0]
2 undef [3]
3 { a => 4 } undef
4 1 undef undef
END
ok $g->printGrammar eq <<END;
Rule Symbol Expansion
1 0 A A a
2 1 A
END
}
if (1) { #TprintParseTree
my $g = compileGrammar(<<END);
A a A b
A c
END
my $tree = parseWithGrammar($g, qw(a a c b b));
ok printParseTree($tree) eq <<END;
Rule Symbol Input
1 0 A
2 a 0
3 0 A
4 a 1
5 1 A
6 c 2
7 b 3
8 b 4
END
ok printGrammarAsXml($g) eq <<END;
<grammar>
<A id="0">
<a/>
<A/>
<b/>
</A>
<A id="1">
<c/>
</A>
</grammar>
END
ok $g->start eq q(A);
}
latestTest:;
if (1) { #TprintGrammarAsXml
my $g = compileGrammar(<<END);
A B a
B B b
B
END
my $tree = parseWithGrammar($g, qw(b b a));
ok printParseTree($tree) eq <<END;
Rule Symbol Input
1 0 A
2 1 B
3 1 B
4 2 B
5 b 0
6 b 1
7 a 2
END
ok printGrammarAsXml($g) eq <<END;
<grammar>
<A id="0">
<B/>
<a/>
</A>
<B id="1">
<B/>
<b/>
</B>
<B id="2">
</B>
</grammar>
END
ok $g->start eq q(A);
}
done_testing;
=pod
printParseTreeAndGrammarAsXml 1
=cut
' called at lib/Parser/LR.pm line 766
Parser::LR::test("Parser::LR") called at test.pl line 11
at /home/cpan/pit/jail/oa1_veBh2C/lib/perl5/Data/Table/Text.pm line 3576, <DATA> line 285.
Data::Table::Text::__ANON__("You tried to plan twice at (eval 75) line 1.\x{a} at /home/cpan/p"...) called at lib/Parser/LR.pm line 767
Parser::LR::test("Parser::LR") called at test.pl line 11
# Looks like your test exited with 255 just after 30.
test.pl ..
Dubious, test returned 255 (wstat 65280, 0xff00)
All 30 subtests passed
Test Summary Report
-------------------
test.pl (Wstat: 65280 Tests: 30 Failed: 0)
Non-zero exit status: 255
Files=1, Tests=30, 0 wallclock secs ( 0.01 usr 0.00 sys + 0.11 cusr 0.01 csys = 0.13 CPU)
Result: FAIL
Failed 1/1 test programs. 0/30 subtests failed.
PREREQUISITES:
Here is a list of prerequisites you specified and versions we
managed to load:
Module Name Have Want
Carp 1.50 0
Data::DFA 20191111 20191031
Data::Dump 1.23 0
Data::NFA 20191110 20191031
Data::Table::Text 20191110 20190815
Exporter 5.73 0
Test2::API 1.302168 0
Test::More 1.302168 0
Perl module toolchain versions installed:
Module Name Have
CPANPLUS 0.9178
CPANPLUS::Dist::Build 0.90
Cwd 3.78
ExtUtils::CBuilder 0.280231
ExtUtils::Command 7.38
ExtUtils::Install 2.14
ExtUtils::MakeMaker 7.38
ExtUtils::Manifest 1.72
ExtUtils::ParseXS 3.40
File::Spec 3.78
Module::Build 0.4229
Pod::Parser 1.63
Pod::Simple 3.35
Test2 1.302168
Test::Harness 3.42
Test::More 1.302168
version 0.9924
******************************** NOTE ********************************
The comments above are created mechanically, possibly without manual
checking by the sender. As there are many people performing automatic
tests on each upload to CPAN, it is likely that you will receive
identical messages about the same problem.
If you believe that the message is mistaken, please reply to the first
one with correction and/or additional informations, and do not take
it personally. We appreciate your patience. :)
**********************************************************************
Additional comments:
This report was machine-generated by CPANPLUS::Dist::YACSmoke 1.08.
Powered by minismokebox version 0.68
CPANPLUS is prefering Build.PL
------------------------------
ENVIRONMENT AND OTHER CONTEXT
------------------------------
Environment variables:
AUTOMATED_TESTING = 1
LANG = en_GB.UTF-8
LANGUAGE = en_GB:en
NONINTERACTIVE_TESTING = 1
PATH = /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
PERL5LIB = /home/cpan/pit/jail/oa1_veBh2C/lib/perl5:/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/nsD_0QxKlX/Data-Table-Text-20191110/blib/lib:/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/nsD_0QxKlX/Data-Table-Text-20191110/blib/arch:/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/oqev8BzKu9/Data-NFA-20191110/blib/lib:/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/oqev8BzKu9/Data-NFA-20191110/blib/arch:/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/Bq_x7t5vMI/Data-DFA-20191111/blib/lib:/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/Bq_x7t5vMI/Data-DFA-20191111/blib/arch:/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/J3jdhzO4_P/Parser-LR-20191109/blib/lib:/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/J3jdhzO4_P/Parser-LR-20191109/blib/arch
PERL5_CPANPLUS_IS_RUNNING = 19288
PERL5_CPANPLUS_IS_VERSION = 0.9178
PERL5_MINISMOKEBOX = 0.68
PERL5_YACSMOKE_BASE = /home/cpan/pit/bare/conf/perl-5.30.1
PERL_EXTUTILS_AUTOINSTALL = --defaultdeps
PERL_LOCAL_LIB_ROOT = /home/cpan/pit/jail/oa1_veBh2C
PERL_MB_OPT = --install_base "/home/cpan/pit/jail/oa1_veBh2C"
PERL_MM_OPT = INSTALL_BASE=/home/cpan/pit/jail/oa1_veBh2C
PERL_MM_USE_DEFAULT = 1
SHELL = /bin/bash
TERM = screen
Perl special variables (and OS-specific diagnostics, for MSWin32):
Perl: $^X = /home/cpan/pit/bare/perl-5.30.1/bin/perl
UID: $< = 1001
EUID: $> = 1001
GID: $( = 1001 1001
EGID: $) = 1001 1001
-------------------------------
--
Summary of my perl5 (revision 5 version 30 subversion 1) configuration:
Platform:
osname=linux
osvers=4.15.0-64-generic
archname=x86_64-linux
uname='linux uchder 4.15.0-64-generic #73-ubuntu smp thu sep 12 13:16:13 utc 2019 x86_64 x86_64 x86_64 gnulinux '
config_args='-des -Dprefix=/home/cpan/pit/bare/perl-5.30.1'
hint=recommended
useposix=true
d_sigaction=define
useithreads=undef
usemultiplicity=undef
use64bitint=define
use64bitall=define
uselongdouble=undef
usemymalloc=n
default_inc_excludes_dot=define
bincompat5005=undef
Compiler:
cc='cc'
ccflags ='-fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
optimize='-O2'
cppflags='-fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include'
ccversion=''
gccversion='7.4.0'
gccosandvers=''
intsize=4
longsize=8
ptrsize=8
doublesize=8
byteorder=12345678
doublekind=3
d_longlong=define
longlongsize=8
d_longdbl=define
longdblsize=16
longdblkind=3
ivtype='long'
ivsize=8
nvtype='double'
nvsize=8
Off_t='off_t'
lseeksize=8
alignbytes=8
prototype=define
Linker and Libraries:
ld='cc'
ldflags =' -fstack-protector-strong -L/usr/local/lib'
libpth=/usr/local/lib /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed /usr/include/x86_64-linux-gnu /usr/lib /lib/x86_64-linux-gnu /lib/../lib /usr/lib/x86_64-linux-gnu /usr/lib/../lib /lib
libs=-lpthread -lnsl -lgdbm -ldl -lm -lcrypt -lutil -lc
perllibs=-lpthread -lnsl -ldl -lm -lcrypt -lutil -lc
libc=libc-2.27.so
so=so
useshrplib=false
libperl=libperl.a
gnulibc_version='2.27'
Dynamic Linking:
dlsrc=dl_dlopen.xs
dlext=so
d_dlsymun=undef
ccdlflags='-Wl,-E'
cccdlflags='-fPIC'
lddlflags='-shared -O2 -L/usr/local/lib -fstack-protector-strong'
Characteristics of this binary (from libperl):
Compile-time options:
HAS_TIMES
PERLIO_LAYERS
PERL_COPY_ON_WRITE
PERL_DONT_CREATE_GVSV
PERL_MALLOC_WRAP
PERL_OP_PARENT
PERL_PRESERVE_IVUV
USE_64_BIT_ALL
USE_64_BIT_INT
USE_LARGE_FILES
USE_LOCALE
USE_LOCALE_COLLATE
USE_LOCALE_CTYPE
USE_LOCALE_NUMERIC
USE_LOCALE_TIME
USE_PERLIO
USE_PERL_ATOF
Locally applied patches:
Devel::PatchPerl 1.72
Built under linux
Compiled at Nov 10 2019 17:20:09
%ENV:
PERL5LIB="/home/cpan/pit/jail/oa1_veBh2C/lib/perl5:/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/nsD_0QxKlX/Data-Table-Text-20191110/blib/lib:/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/nsD_0QxKlX/Data-Table-Text-20191110/blib/arch:/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/oqev8BzKu9/Data-NFA-20191110/blib/lib:/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/oqev8BzKu9/Data-NFA-20191110/blib/arch:/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/Bq_x7t5vMI/Data-DFA-20191111/blib/lib:/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/Bq_x7t5vMI/Data-DFA-20191111/blib/arch:/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/J3jdhzO4_P/Parser-LR-20191109/blib/lib:/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/J3jdhzO4_P/Parser-LR-20191109/blib/arch"
PERL5_CPANPLUS_IS_RUNNING="19288"
PERL5_CPANPLUS_IS_VERSION="0.9178"
PERL5_MINISMOKEBOX="0.68"
PERL5_YACSMOKE_BASE="/home/cpan/pit/bare/conf/perl-5.30.1"
PERL_EXTUTILS_AUTOINSTALL="--defaultdeps"
PERL_LOCAL_LIB_ROOT="/home/cpan/pit/jail/oa1_veBh2C"
PERL_MB_OPT="--install_base "/home/cpan/pit/jail/oa1_veBh2C""
PERL_MM_OPT="INSTALL_BASE=/home/cpan/pit/jail/oa1_veBh2C"
PERL_MM_USE_DEFAULT="1"
@INC:
/home/cpan/pit/jail/oa1_veBh2C/lib/perl5/5.30.1/x86_64-linux
/home/cpan/pit/jail/oa1_veBh2C/lib/perl5/5.30.1
/home/cpan/pit/jail/oa1_veBh2C/lib/perl5/x86_64-linux
/home/cpan/pit/jail/oa1_veBh2C/lib/perl5
/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/nsD_0QxKlX/Data-Table-Text-20191110/blib/lib
/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/nsD_0QxKlX/Data-Table-Text-20191110/blib/arch
/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/oqev8BzKu9/Data-NFA-20191110/blib/lib
/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/oqev8BzKu9/Data-NFA-20191110/blib/arch
/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/Bq_x7t5vMI/Data-DFA-20191111/blib/lib
/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/Bq_x7t5vMI/Data-DFA-20191111/blib/arch
/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/J3jdhzO4_P/Parser-LR-20191109/blib/lib
/home/cpan/pit/bare/conf/perl-5.30.1/.cpanplus/5.30.1/build/J3jdhzO4_P/Parser-LR-20191109/blib/arch
/home/cpan/pit/bare/perl-5.30.1/lib/site_perl/5.30.1/x86_64-linux
/home/cpan/pit/bare/perl-5.30.1/lib/site_perl/5.30.1
/home/cpan/pit/bare/perl-5.30.1/lib/5.30.1/x86_64-linux
/home/cpan/pit/bare/perl-5.30.1/lib/5.30.1