Mock Version: 2.9 Mock Version: 2.9 Mock Version: 2.9 ENTER ['do_with_status'](['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target noarch --nodeps /builddir/build/SPECS/perl-JSON.spec'], chrootPath='/var/lib/mock/module-perl-bootstrap-5.24-8030020210704065229-30b713e6-build-29630-4887/root'env={'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'}shell=Falselogger=timeout=86400uid=993gid=135user='mockbuild'nspawn_args=[]unshare_net=TrueprintOutput=False) Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target noarch --nodeps /builddir/build/SPECS/perl-JSON.spec'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'} and shell False sh: /usr/bin/perl: No such file or directory sh: /usr/bin/perl: No such file or directory sh: /usr/bin/perl: No such file or directory Building target platforms: noarch Building for target noarch Wrote: /builddir/build/SRPMS/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.src.rpm Child return code was: 0 ENTER ['do_with_status'](['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target noarch --nodeps /builddir/build/SPECS/perl-JSON.spec'], chrootPath='/var/lib/mock/module-perl-bootstrap-5.24-8030020210704065229-30b713e6-build-29630-4887/root'env={'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'}shell=Falselogger=timeout=86400uid=993gid=135user='mockbuild'nspawn_args=[]unshare_net=TrueprintOutput=False) Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target noarch --nodeps /builddir/build/SPECS/perl-JSON.spec'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'} and shell False Building target platforms: noarch Building for target noarch Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.6bkm4M + umask 022 + cd /builddir/build/BUILD + cd /builddir/build/BUILD + rm -rf JSON-2.90 + /usr/bin/gzip -dc /builddir/build/SOURCES/JSON-2.90.tar.gz + /usr/bin/tar -xof - + STATUS=0 + '[' 0 -ne 0 ']' + cd JSON-2.90 + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + find . -type f -exec chmod -c -x '{}' + + find t/ -type f -exec perl -pi -e 's|^#! perl|#!/usr/bin/perl|' '{}' + + sed -i 's/\r//' README t/00_load.t t/00_pod.t t/01_utf8.t t/02_error.t t/03_types.t t/06_pc_pretty.t t/07_pc_esc.t t/08_pc_base.t t/09_pc_extra_number.t t/10_pc_keysort.t t/11_pc_expo.t t/12_blessed.t t/13_limit.t t/14_latin1.t t/15_prefix.t t/16_tied.t t/17_relaxed.t t/18_json_checker.t t/19_incr.t t/20_unknown.t t/21_evans_bugrep.t t/22_comment_at_eof.t t/99_binary.t t/_unicode_handling.pm t/e00_func.t t/e01_property.t t/e02_bool.t t/e03_bool2.t t/e04_sortby.t t/e05_esc_slash.t t/e06_allow_barekey.t t/e07_allow_singlequote.t t/e08_decode.t t/e09_encode.t t/e10_bignum.t t/e11_conv_blessed_univ.t t/e12_upgrade.t t/e13_overloaded_eq.t t/e14_decode_prefix.t t/e15_tie_ixhash.t t/e16_incr_parse_fixed.t t/e90_misc.t t/x00_load.t t/x02_error.t t/x12_blessed.t t/x16_tied.t t/x17_strange_overload.t t/xe01_property.t t/xe02_bool.t t/xe03_bool2.t t/xe04support_by_pp.t t/xe05_indent_length.t t/xe08_decode.t t/xe10_bignum.t t/xe11_conv_blessed_univ.t t/xe12_boolean.t t/xe19_xs_and_suportbypp.t t/xe20_croak_message.t t/xe21_is_pp.t + exit 0 Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.KEncHi + umask 022 + cd /builddir/build/BUILD + cd JSON-2.90 + /usr/bin/perl Makefile.PL INSTALLDIRS=vendor Welcome to JSON (v.2.90) ============================= *************************** CAUTION ************************************** * * * INCOMPATIBLE CHANGE (JSON::XS version 2.90) * * * * JSON.pm had patched JSON::XS::Boolean and JSON::PP::Boolean internally * * on loading time for making these modules inherit JSON::Boolean. * * But since JSON::XS v3.0 it use Types::Serialiser as boolean class. * * Then now JSON.pm breaks boolean classe overload features and * * -support_by_pp if JSON::XS v3.0 or later is installed. * * * * JSON::true and JSON::false returned JSON::Boolean objects. * * For workaround, they return JSON::PP::Boolean objects in this version. * * * * isa_ok(JSON::true, 'JSON::PP::Boolean'); * * * * And it discards a feature: * * * * ok(JSON::true eq 'true'); * * * * In other word, JSON::PP::Boolean overload numeric only. * * * * ok( JSON::true == 1 ); * * * ************************************************************************** ************************** CAUTION ************************** * This is 'JSON version 2' and there are many differences * * to version 1.xx * * Please check your applications useing old version. * * See to 'INCOMPATIBLE CHANGES TO OLD VERSION' and 'TIPS' * ************************************************************* Checking if your kit is complete... Looks good Generating a Unix-style Makefile Writing Makefile for JSON + make -j16 cp lib/JSON.pm blib/lib/JSON.pm cp lib/JSON/backportPP/Compat5006.pm blib/lib/JSON/backportPP/Compat5006.pm cp lib/JSON/backportPP.pm blib/lib/JSON/backportPP.pm cp lib/JSON/backportPP/Compat5005.pm blib/lib/JSON/backportPP/Compat5005.pm cp lib/JSON/backportPP/Boolean.pm blib/lib/JSON/backportPP/Boolean.pm Manifying 5 pod documents + exit 0 Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.koubsP + umask 022 + cd /builddir/build/BUILD + '[' /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch '!=' / ']' + rm -rf /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch ++ dirname /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch + mkdir -p /builddir/build/BUILDROOT + mkdir /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch + cd JSON-2.90 + make pure_install DESTDIR=/builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch Manifying 5 pod documents Installing /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/share/perl5/vendor_perl/JSON.pm Installing /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/share/perl5/vendor_perl/JSON/backportPP.pm Installing /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/share/perl5/vendor_perl/JSON/backportPP/Compat5005.pm Installing /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/share/perl5/vendor_perl/JSON/backportPP/Boolean.pm Installing /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/share/perl5/vendor_perl/JSON/backportPP/Compat5006.pm Installing /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/share/man/man3/JSON::backportPP::Compat5006.3pm Installing /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/share/man/man3/JSON.3pm Installing /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/share/man/man3/JSON::backportPP::Boolean.3pm Installing /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/share/man/man3/JSON::backportPP::Compat5005.3pm Installing /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/share/man/man3/JSON::backportPP.3pm + find /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch -type f -name .packlist -exec rm -f '{}' + + find /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch -depth -type d -exec rmdir '{}' ';' + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr + /usr/lib/rpm/find-debuginfo.sh -j16 --strict-build-id -m -i --build-id-seed 2.90-8.module+el8.3.0+132+26c068a9 --unique-debug-suffix -2.90-8.module+el8.3.0+132+26c068a9.noarch --unique-debug-src-base perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch --run-dwz --dwz-low-mem-die-limit 10000000 --dwz-max-die-limit 50000000 -S debugsourcefiles.list /builddir/build/BUILD/JSON-2.90 + /usr/lib/rpm/check-buildroot + /usr/lib/rpm/redhat/brp-ldconfig /sbin/ldconfig: Warning: ignoring configuration file that cannot be opened: /etc/ld.so.conf: No such file or directory + /usr/lib/rpm/brp-compress + /usr/lib/rpm/brp-strip-static-archive /usr/bin/strip + /usr/lib/rpm/brp-python-bytecompile '' 1 + /usr/lib/rpm/brp-python-hardlink + PYTHON3=/usr/libexec/platform-python + /usr/lib/rpm/redhat/brp-mangle-shebangs Executing(%check): /bin/sh -e /var/tmp/rpm-tmp.GMVjen + umask 022 ~/build/BUILD/JSON-2.90 ~/build/BUILD + cd /builddir/build/BUILD + pushd JSON-2.90 + /usr/bin/mkdir -p /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON + /usr/bin/tar -cf - t/ + cd /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON + /usr/bin/tar -xf - + find . -maxdepth 1 -type f -name '*META*' -exec /usr/bin/cp -vp '{}' /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON ';' './META.json' -> '/builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/META.json' './META.yml' -> '/builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/META.yml' + find /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON -type f -exec /usr/bin/chmod -c -x '{}' ';' ++ find /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON -type f -name '*.t' + T_FILES='/builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/00_pod.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe05_indent_length.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x02_error.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e14_decode_prefix.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e02_bool.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/11_pc_expo.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/13_limit.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/16_tied.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe12_boolean.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe02_bool.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe01_property.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e09_encode.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe10_bignum.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/22_comment_at_eof.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe03_bool2.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x17_strange_overload.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e01_property.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e12_upgrade.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe20_croak_message.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/01_utf8.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/03_types.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e15_tie_ixhash.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x16_tied.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/06_pc_pretty.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/18_json_checker.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe11_conv_blessed_univ.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/19_incr.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e10_bignum.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/10_pc_keysort.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/09_pc_extra_number.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/15_prefix.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe19_xs_and_suportbypp.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe21_is_pp.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e04_sortby.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e08_decode.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/07_pc_esc.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/14_latin1.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e16_incr_parse_fixed.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e11_conv_blessed_univ.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/12_blessed.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/17_relaxed.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e13_overloaded_eq.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e06_allow_barekey.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e07_allow_singlequote.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e90_misc.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e00_func.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/00_load.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe04support_by_pp.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x00_load.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/20_unknown.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e03_bool2.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e05_esc_slash.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe08_decode.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/21_evans_bugrep.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/02_error.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x12_blessed.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/08_pc_base.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/99_binary.t' ++ mktemp + TMPHEAD=/tmp/tmp.ftpvzHPPWD ++ mktemp + TMPBODY=/tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/00_pod.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/00_pod.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe05_indent_length.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe05_indent_length.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x02_error.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x02_error.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e14_decode_prefix.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e14_decode_prefix.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e02_bool.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e02_bool.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/11_pc_expo.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/11_pc_expo.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/13_limit.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/13_limit.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/16_tied.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/16_tied.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe12_boolean.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe12_boolean.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe02_bool.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe02_bool.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe01_property.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe01_property.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e09_encode.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e09_encode.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe10_bignum.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe10_bignum.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/22_comment_at_eof.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/22_comment_at_eof.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe03_bool2.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe03_bool2.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x17_strange_overload.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x17_strange_overload.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e01_property.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e01_property.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e12_upgrade.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e12_upgrade.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe20_croak_message.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe20_croak_message.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/01_utf8.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/01_utf8.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/03_types.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/03_types.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e15_tie_ixhash.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e15_tie_ixhash.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x16_tied.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x16_tied.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/06_pc_pretty.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/06_pc_pretty.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/18_json_checker.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/18_json_checker.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe11_conv_blessed_univ.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe11_conv_blessed_univ.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/19_incr.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/19_incr.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e10_bignum.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e10_bignum.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/10_pc_keysort.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/10_pc_keysort.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/09_pc_extra_number.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/09_pc_extra_number.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/15_prefix.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/15_prefix.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe19_xs_and_suportbypp.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe19_xs_and_suportbypp.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe21_is_pp.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe21_is_pp.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e04_sortby.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e04_sortby.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e08_decode.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e08_decode.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/07_pc_esc.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/07_pc_esc.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/14_latin1.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/14_latin1.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e16_incr_parse_fixed.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e16_incr_parse_fixed.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e11_conv_blessed_univ.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e11_conv_blessed_univ.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/12_blessed.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/12_blessed.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/17_relaxed.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/17_relaxed.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e13_overloaded_eq.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e13_overloaded_eq.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e06_allow_barekey.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e06_allow_barekey.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e07_allow_singlequote.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e07_allow_singlequote.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e90_misc.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e90_misc.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e00_func.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e00_func.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/00_load.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/00_load.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe04support_by_pp.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe04support_by_pp.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x00_load.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x00_load.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/20_unknown.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/20_unknown.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e03_bool2.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e03_bool2.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e05_esc_slash.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e05_esc_slash.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe08_decode.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe08_decode.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/21_evans_bugrep.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/21_evans_bugrep.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/02_error.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/02_error.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x12_blessed.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x12_blessed.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/08_pc_base.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/08_pc_base.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + for file in $T_FILES + head -1 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/99_binary.t + tail -n +2 /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/99_binary.t + /usr/bin/perl -pi -e '$f = /^#!/ ? "" : "#!/usr/bin/perl$/"; $_="$f$_"' /tmp/tmp.ftpvzHPPWD + cat /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + /usr/bin/perl -MExtUtils::MakeMaker -e 'ExtUtils::MM_Unix->fixin(qw{/builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/00_pod.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe05_indent_length.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x02_error.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e14_decode_prefix.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e02_bool.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/11_pc_expo.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/13_limit.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/16_tied.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe12_boolean.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe02_bool.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe01_property.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e09_encode.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe10_bignum.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/22_comment_at_eof.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe03_bool2.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x17_strange_overload.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e01_property.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e12_upgrade.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe20_croak_message.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/01_utf8.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/03_types.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e15_tie_ixhash.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x16_tied.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/06_pc_pretty.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/18_json_checker.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe11_conv_blessed_univ.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/19_incr.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e10_bignum.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/10_pc_keysort.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/09_pc_extra_number.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/15_prefix.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe19_xs_and_suportbypp.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe21_is_pp.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e04_sortby.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e08_decode.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/07_pc_esc.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/14_latin1.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e16_incr_parse_fixed.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e11_conv_blessed_univ.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/12_blessed.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/17_relaxed.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e13_overloaded_eq.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e06_allow_barekey.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e07_allow_singlequote.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e90_misc.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e00_func.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/00_load.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe04support_by_pp.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x00_load.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/20_unknown.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e03_bool2.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e05_esc_slash.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe08_decode.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/21_evans_bugrep.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/02_error.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x12_blessed.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/08_pc_base.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/99_binary.t})' + /usr/bin/rm /tmp/tmp.ftpvzHPPWD /tmp/tmp.2t5D7qOD8N + /usr/bin/chmod +x /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/00_pod.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe05_indent_length.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x02_error.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e14_decode_prefix.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e02_bool.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/11_pc_expo.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/13_limit.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/16_tied.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe12_boolean.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe02_bool.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe01_property.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e09_encode.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe10_bignum.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/22_comment_at_eof.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe03_bool2.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x17_strange_overload.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e01_property.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e12_upgrade.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe20_croak_message.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/01_utf8.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/03_types.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e15_tie_ixhash.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x16_tied.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/06_pc_pretty.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/18_json_checker.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe11_conv_blessed_univ.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/19_incr.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e10_bignum.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/10_pc_keysort.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/09_pc_extra_number.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/15_prefix.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe19_xs_and_suportbypp.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe21_is_pp.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e04_sortby.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e08_decode.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/07_pc_esc.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/14_latin1.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e16_incr_parse_fixed.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e11_conv_blessed_univ.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/12_blessed.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/17_relaxed.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e13_overloaded_eq.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e06_allow_barekey.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e07_allow_singlequote.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e90_misc.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e00_func.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/00_load.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe04support_by_pp.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x00_load.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/20_unknown.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e03_bool2.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/e05_esc_slash.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/xe08_decode.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/21_evans_bugrep.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/02_error.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/x12_blessed.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/08_pc_base.t /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON/t/99_binary.t + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/libexec/perl5-tests/JSON + popd ~/build/BUILD + cd JSON-2.90 + make test 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_load.t ................. ok t/00_pod.t .................. ok t/01_utf8.t ................. ok t/02_error.t ................ ok t/03_types.t ................ ok t/06_pc_pretty.t ............ ok t/07_pc_esc.t ............... ok t/08_pc_base.t .............. ok t/09_pc_extra_number.t ...... ok t/10_pc_keysort.t ........... ok t/11_pc_expo.t .............. ok t/12_blessed.t .............. ok t/13_limit.t ................ ok t/14_latin1.t ............... ok t/15_prefix.t ............... ok t/16_tied.t ................. ok t/17_relaxed.t .............. ok t/18_json_checker.t ......... ok t/19_incr.t ................. ok t/20_unknown.t .............. ok t/21_evans_bugrep.t ......... ok t/22_comment_at_eof.t ....... ok t/99_binary.t ............... ok t/e00_func.t ................ ok t/e01_property.t ............ ok t/e02_bool.t ................ ok t/e03_bool2.t ............... ok t/e04_sortby.t .............. ok t/e05_esc_slash.t ........... ok t/e06_allow_barekey.t ....... ok t/e07_allow_singlequote.t ... ok t/e08_decode.t .............. ok t/e09_encode.t .............. ok t/e10_bignum.t .............. ok t/e11_conv_blessed_univ.t ... ok t/e12_upgrade.t ............. ok t/e13_overloaded_eq.t ....... ok t/e14_decode_prefix.t ....... ok t/e15_tie_ixhash.t .......... ok t/e16_incr_parse_fixed.t .... ok t/e90_misc.t ................ ok t/x00_load.t ................ ok t/x02_error.t ............... ok t/x12_blessed.t ............. ok t/x16_tied.t ................ ok t/x17_strange_overload.t .... ok t/xe01_property.t ........... ok t/xe02_bool.t ............... ok t/xe03_bool2.t .............. ok t/xe04support_by_pp.t ....... ok t/xe05_indent_length.t ...... ok t/xe08_decode.t ............. ok t/xe10_bignum.t ............. ok t/xe11_conv_blessed_univ.t .. ok t/xe12_boolean.t ............ ok t/xe19_xs_and_suportbypp.t .. ok t/xe20_croak_message.t ...... ok t/xe21_is_pp.t .............. ok All tests successful. Files=58, Tests=3806, 4 wallclock secs ( 0.22 usr 0.05 sys + 3.75 cusr 0.29 csys = 4.31 CPU) Result: PASS + exit 0 Processing files: perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.ek8NH9 + umask 022 + cd /builddir/build/BUILD + cd JSON-2.90 + DOCDIR=/builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/share/doc/perl-JSON + export LC_ALL=C + LC_ALL=C + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/share/doc/perl-JSON + cp -pr Changes /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/share/doc/perl-JSON + cp -pr README /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch/usr/share/doc/perl-JSON + exit 0 Provides: perl(JSON) = 2.90 perl-JSON = 2.90-8.module+el8.3.0+132+26c068a9 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: perl(:VERSION) >= 5.5.0 perl(:VERSION) >= 5.6.0 perl(B) perl(Carp) perl(Exporter) perl(base) perl(bytes) perl(constant) perl(overload) perl(strict) perl(vars) Processing files: perl-JSON-tests-2.90-8.module+el8.3.0+132+26c068a9.noarch Provides: perl-JSON-tests = 2.90-8.module+el8.3.0+132+26c068a9 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Checking for unpackaged file(s): /usr/lib/rpm/check-files /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch Wrote: /builddir/build/RPMS/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch.rpm Wrote: /builddir/build/RPMS/perl-JSON-tests-2.90-8.module+el8.3.0+132+26c068a9.noarch.rpm Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.mtsUSW + umask 022 + cd /builddir/build/BUILD + cd JSON-2.90 + /usr/bin/rm -rf /builddir/build/BUILDROOT/perl-JSON-2.90-8.module+el8.3.0+132+26c068a9.noarch + exit 0 Child return code was: 0