diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | t/superuser--failing-scriptlets.t | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -2,6 +2,7 @@ o check & report where genhdlist2 is o check that web server has actually started o describe more tests to help pinpoint regressions + o fix test with rpm < 4.13 on CentOS7 o perform some file conflict tests only on Mageia Version 8.121 - 8 April 2020 diff --git a/t/superuser--failing-scriptlets.t b/t/superuser--failing-scriptlets.t index 6804eaaa..73adcada 100644 --- a/t/superuser--failing-scriptlets.t +++ b/t/superuser--failing-scriptlets.t @@ -13,7 +13,7 @@ test_install_rpm_fail('pre'); test_install_rpm_fail('pretrans'); test_install_rpm('post'); require urpm::select; -if (urpm::select::_rpm_version() lt 4.13.0) { # && -e '/etc/mageia-release') { +if (urpm::select::_rpm_version() lt 4.13.0 && -e '/etc/mageia-release') { test_install_rpm('preun'); } else { test_install_rpm_but_uninstall_fail('preun'); |