diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-04-26 16:35:42 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-04-29 14:45:17 +0200 |
commit | ed9000014bdd876cb4a71d670277d091e50900f2 (patch) | |
tree | 63fe0f93c0d3ec428df3d2baf6d07336591294f9 | |
parent | d78b5f513a2874b4fdce5a6b673e6f33bdc9ebd3 (diff) | |
download | urpmi-ed9000014bdd876cb4a71d670277d091e50900f2.tar urpmi-ed9000014bdd876cb4a71d670277d091e50900f2.tar.gz urpmi-ed9000014bdd876cb4a71d670277d091e50900f2.tar.bz2 urpmi-ed9000014bdd876cb4a71d670277d091e50900f2.tar.xz urpmi-ed9000014bdd876cb4a71d670277d091e50900f2.zip |
display RPM version in logs
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | t/02create_pkgs.t | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -4,6 +4,7 @@ o check & report where genhdlist2 is o check that web server has actually started o describe more tests to help pinpoint regressions + o display RPM version in cpan-testers logs o do not fail test when libnss.so is not found in Debian 9 or FreeBSD o fix failing to build some rpms on FreeBSD o fix test with rpm < 4.13 on CentOS7 diff --git a/t/02create_pkgs.t b/t/02create_pkgs.t index 84fac0af..56c33ebb 100644 --- a/t/02create_pkgs.t +++ b/t/02create_pkgs.t @@ -9,6 +9,8 @@ use Cwd; set_path(); +warn ">> RPM version is: ", `LC_ALL=C rpm --version`, "\n"; + chdir 't' if -d 't'; system('rm -rf tmp media'); foreach (qw(media tmp tmp/BUILD tmp/RPMS tmp/RPMS/noarch tmp/SRPMS)) { |