Parser-LR v20191109 Perl 5 v5.30.1 i386-netbsd-thread-multi
- Status
- Fail
- From
- Chris Williams (BINGOS)
- Dist
-
Parser-LR v20191109
- Platform
- Perl 5 v5.30.1 i386-netbsd-thread-multi
- Date
- 2019-11-13 11:08:00
- ID
- dad77072-0605-11ea-99fe-b031dbec7dbf
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 70) line 1.
at /home/cpan/pit/jail/726LdFXxC_/lib/perl5/Data/Table/Text.pm line 3576, <DATA> line 285.
Data::Table::Text::__ANON__("You tried to plan twice at (eval 70) line 1.\x{a}") called at /home/cpan/pit/thr/perl-5.30.1/lib/site_perl/5.30.1/Test2/EventFacet/Trace.pm line 68
Test2::EventFacet::Trace::throw(Test2::EventFacet::Trace=HASH(0xac8313c0), "You tried to plan twice") called at /home/cpan/pit/thr/perl-5.30.1/lib/site_perl/5.30.1/Test2/API/Context.pm line 201
Test2::API::Context::throw(Test2::API::Context=HASH(0xac9e5db0), "You tried to plan twice") called at /home/cpan/pit/thr/perl-5.30.1/lib/site_perl/5.30.1/Test/Builder.pm line 461
Test::Builder::plan(Test::Builder=HASH(0xaccd7580), "tests", 29) called at /home/cpan/pit/thr/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 70) line 1
Parser::LR::BEGIN() called at (eval 70) line 1
eval {...} called at (eval 70) 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 70) line 1, <DATA> line 285.
at /home/cpan/pit/jail/726LdFXxC_/lib/perl5/Data/Table/Text.pm line 3576, <DATA> line 285.
Data::Table::Text::__ANON__("You tried to plan twice at (eval 70) line 1.\x{a} at /home/cpan/p"...) called at (eval 70) 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/726LdFXxC_/lib/perl5/Data/Table/Text.pm line 3576, <DATA> line 285.
Data::Table::Text::__ANON__("You tried to plan twice at (eval 70) 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.03 usr 0.01 sys + 0.22 cusr 0.13 csys = 0.39 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
NONINTERACTIVE_TESTING = 1
PATH = /home/cpan/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R7/bin:/usr/pkg/bin:/usr/pkg/sbin:/usr/games:/usr/local/bin:/usr/local/sbin
PERL5LIB = /home/cpan/pit/jail/726LdFXxC_/lib/perl5:/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/Hw8dIrVwnf/Data-Table-Text-20191110/blib/lib:/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/Hw8dIrVwnf/Data-Table-Text-20191110/blib/arch:/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/d6P3YhuUNk/Data-NFA-20191110/blib/lib:/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/d6P3YhuUNk/Data-NFA-20191110/blib/arch:/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/O0Jkv5Rtew/Data-DFA-20191111/blib/lib:/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/O0Jkv5Rtew/Data-DFA-20191111/blib/arch:/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/pZcyAq_d5r/Parser-LR-20191109/blib/lib:/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/pZcyAq_d5r/Parser-LR-20191109/blib/arch
PERL5_CPANPLUS_IS_RUNNING = 11665
PERL5_CPANPLUS_IS_VERSION = 0.9178
PERL5_MINISMOKEBOX = 0.68
PERL5_YACSMOKE_BASE = /home/cpan/pit/thr/conf/perl-5.30.1
PERL_EXTUTILS_AUTOINSTALL = --defaultdeps
PERL_LOCAL_LIB_ROOT = /home/cpan/pit/jail/726LdFXxC_
PERL_MB_OPT = --install_base "/home/cpan/pit/jail/726LdFXxC_"
PERL_MM_OPT = INSTALL_BASE=/home/cpan/pit/jail/726LdFXxC_
PERL_MM_USE_DEFAULT = 1
SHELL = /usr/pkg/bin/bash
TERM = screen
Perl special variables (and OS-specific diagnostics, for MSWin32):
Perl: $^X = /home/cpan/pit/thr/perl-5.30.1/bin/perl
UID: $< = 1001
EUID: $> = 1001
GID: $( = 100 100
EGID: $) = 100 100
-------------------------------
--
Summary of my perl5 (revision 5 version 30 subversion 1) configuration:
Platform:
osname=netbsd
osvers=8.1
archname=i386-netbsd-thread-multi
uname='netbsd naboo.bingosnet.co.uk 8.1 netbsd 8.1 (generic) #0: fri may 31 08:43:59 utc 2019 mkrepro@mkrepro.netbsd.org:usrsrcsysarchi386compilegeneric i386 '
config_args='-des -Dprefix=/home/cpan/pit/thr/perl-5.30.1 -Dusethreads'
hint=recommended
useposix=true
d_sigaction=define
useithreads=define
usemultiplicity=define
use64bitint=undef
use64bitall=undef
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/pkg/include -D_FORTIFY_SOURCE=2'
optimize='-O'
cppflags='-fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/pkg/include'
ccversion=''
gccversion='5.5.0'
gccosandvers=''
intsize=4
longsize=4
ptrsize=4
doublesize=8
byteorder=1234
doublekind=3
d_longlong=define
longlongsize=8
d_longdbl=define
longdblsize=12
longdblkind=3
ivtype='long'
ivsize=4
nvtype='double'
nvsize=8
Off_t='off_t'
lseeksize=8
alignbytes=4
prototype=define
Linker and Libraries:
ld='cc'
ldflags =' -Wl,-rpath,/usr/pkg/lib -Wl,-rpath,/usr/local/lib -fstack-protector-strong -L/usr/pkg/lib'
libpth=/usr/include/gcc-5 /usr/lib /usr/pkg/lib /lib
libs=-lpthread -lgdbm -lm -lcrypt -lutil -lc -lposix
perllibs=-lpthread -lm -lcrypt -lutil -lc -lposix
libc=/lib/libc.so
so=so
useshrplib=false
libperl=libperl.a
gnulibc_version=''
Dynamic Linking:
dlsrc=dl_dlopen.xs
dlext=so
d_dlsymun=undef
ccdlflags='-Wl,-E '
cccdlflags='-DPIC -fPIC '
lddlflags='-shared -L/usr/pkg/lib -fstack-protector-strong'
Characteristics of this binary (from libperl):
Compile-time options:
HAS_TIMES
MULTIPLICITY
PERLIO_LAYERS
PERL_COPY_ON_WRITE
PERL_DONT_CREATE_GVSV
PERL_IMPLICIT_CONTEXT
PERL_MALLOC_WRAP
PERL_OP_PARENT
PERL_PRESERVE_IVUV
USE_ITHREADS
USE_LARGE_FILES
USE_LOCALE
USE_LOCALE_COLLATE
USE_LOCALE_CTYPE
USE_LOCALE_NUMERIC
USE_LOCALE_TIME
USE_PERLIO
USE_PERL_ATOF
USE_REENTRANT_API
Locally applied patches:
Devel::PatchPerl 1.76
Built under netbsd
Compiled at Nov 11 2019 04:11:00
%ENV:
PERL5LIB="/home/cpan/pit/jail/726LdFXxC_/lib/perl5:/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/Hw8dIrVwnf/Data-Table-Text-20191110/blib/lib:/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/Hw8dIrVwnf/Data-Table-Text-20191110/blib/arch:/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/d6P3YhuUNk/Data-NFA-20191110/blib/lib:/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/d6P3YhuUNk/Data-NFA-20191110/blib/arch:/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/O0Jkv5Rtew/Data-DFA-20191111/blib/lib:/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/O0Jkv5Rtew/Data-DFA-20191111/blib/arch:/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/pZcyAq_d5r/Parser-LR-20191109/blib/lib:/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/pZcyAq_d5r/Parser-LR-20191109/blib/arch"
PERL5_CPANPLUS_IS_RUNNING="11665"
PERL5_CPANPLUS_IS_VERSION="0.9178"
PERL5_MINISMOKEBOX="0.68"
PERL5_YACSMOKE_BASE="/home/cpan/pit/thr/conf/perl-5.30.1"
PERL_EXTUTILS_AUTOINSTALL="--defaultdeps"
PERL_LOCAL_LIB_ROOT="/home/cpan/pit/jail/726LdFXxC_"
PERL_MB_OPT="--install_base "/home/cpan/pit/jail/726LdFXxC_""
PERL_MM_OPT="INSTALL_BASE=/home/cpan/pit/jail/726LdFXxC_"
PERL_MM_USE_DEFAULT="1"
@INC:
/home/cpan/pit/jail/726LdFXxC_/lib/perl5/5.30.1/i386-netbsd-thread-multi
/home/cpan/pit/jail/726LdFXxC_/lib/perl5/5.30.1
/home/cpan/pit/jail/726LdFXxC_/lib/perl5/i386-netbsd-thread-multi
/home/cpan/pit/jail/726LdFXxC_/lib/perl5
/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/Hw8dIrVwnf/Data-Table-Text-20191110/blib/lib
/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/Hw8dIrVwnf/Data-Table-Text-20191110/blib/arch
/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/d6P3YhuUNk/Data-NFA-20191110/blib/lib
/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/d6P3YhuUNk/Data-NFA-20191110/blib/arch
/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/O0Jkv5Rtew/Data-DFA-20191111/blib/lib
/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/O0Jkv5Rtew/Data-DFA-20191111/blib/arch
/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/pZcyAq_d5r/Parser-LR-20191109/blib/lib
/home/cpan/pit/thr/conf/perl-5.30.1/.cpanplus/5.30.1/build/pZcyAq_d5r/Parser-LR-20191109/blib/arch
/home/cpan/pit/thr/perl-5.30.1/lib/site_perl/5.30.1/i386-netbsd-thread-multi
/home/cpan/pit/thr/perl-5.30.1/lib/site_perl/5.30.1
/home/cpan/pit/thr/perl-5.30.1/lib/5.30.1/i386-netbsd-thread-multi
/home/cpan/pit/thr/perl-5.30.1/lib/5.30.1