diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-01-07 15:20:56 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-01-17 01:52:30 +0100 |
commit | c865af238e723fced2d9740c93d51f826762cee1 (patch) | |
tree | be1689048c0ab6f069fefdf9bfd9fd32c957359f /t/superuser--failing-scriptlets.t | |
parent | 2d7485c5c783f330f820dd62bd53c44c5cf42a5e (diff) | |
download | urpmi-c865af238e723fced2d9740c93d51f826762cee1.tar urpmi-c865af238e723fced2d9740c93d51f826762cee1.tar.gz urpmi-c865af238e723fced2d9740c93d51f826762cee1.tar.bz2 urpmi-c865af238e723fced2d9740c93d51f826762cee1.tar.xz urpmi-c865af238e723fced2d9740c93d51f826762cee1.zip |
fix failing scriptlets test with rpm < 4.13.0
it got broken when wee added support for rpm 4.13.0 in
commit cdcb6c6359e8ee2a590c3c40aa3b4d57ec3b1e80
Diffstat (limited to 't/superuser--failing-scriptlets.t')
-rw-r--r-- | t/superuser--failing-scriptlets.t | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/t/superuser--failing-scriptlets.t b/t/superuser--failing-scriptlets.t index 80c81146..6804eaaa 100644 --- a/t/superuser--failing-scriptlets.t +++ b/t/superuser--failing-scriptlets.t @@ -12,7 +12,12 @@ need_root_and_prepare(); test_install_rpm_fail('pre'); test_install_rpm_fail('pretrans'); test_install_rpm('post'); -test_install_rpm_but_uninstall_fail('preun'); +require urpm::select; +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'); +} test_install_rpm('postun'); test_install_rpm('posttrans'); |