summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2015-08-04 04:26:36 -0400
committerThierry Vignaud <thierry.vignaud@gmail.com>2015-08-04 05:50:46 -0400
commit714d7bde3a2244dbfc6e83305d6e586555d2339f (patch)
tree2f92f26465c9ae5b51b44af2c411b3a5eedf84e6 /t
parent0f9a26d4d5c78b9e44e0062a41ce0448bcb1f953 (diff)
downloadurpmi-714d7bde3a2244dbfc6e83305d6e586555d2339f.tar
urpmi-714d7bde3a2244dbfc6e83305d6e586555d2339f.tar.gz
urpmi-714d7bde3a2244dbfc6e83305d6e586555d2339f.tar.bz2
urpmi-714d7bde3a2244dbfc6e83305d6e586555d2339f.tar.xz
urpmi-714d7bde3a2244dbfc6e83305d6e586555d2339f.zip
install sh as dep for failing-scriplets pkgs
Diffstat (limited to 't')
-rw-r--r--t/superuser--failing-scriptlets.t11
1 files changed, 7 insertions, 4 deletions
diff --git a/t/superuser--failing-scriptlets.t b/t/superuser--failing-scriptlets.t
index be838c7b..186e182f 100644
--- a/t/superuser--failing-scriptlets.t
+++ b/t/superuser--failing-scriptlets.t
@@ -27,8 +27,9 @@ test_install_upgrade_rpm('triggerpostun');
sub test_install_rpm {
my ($name) = @_;
+ test_install_rpm_no_remove('sh');
system_("rpm --root $::pwd/root -i media/$medium_name/$name-*.rpm");
- check_installed_fullnames_and_remove("$name-1-1");
+ check_installed_fullnames_and_remove("$name-1-1", "sh-1-1");
}
sub test_install_rpm_no_remove {
my ($name) = @_;
@@ -37,15 +38,17 @@ sub test_install_rpm_no_remove {
}
sub test_install_rpm_fail {
my ($name) = @_;
+ test_install_rpm_no_remove('sh');
system_should_fail("rpm --root $::pwd/root -i media/$medium_name/$name-*.rpm");
- check_nothing_installed();
+ check_installed_fullnames_and_remove("sh-1-1");
}
sub test_install_upgrade_rpm {
my ($name) = @_;
+ test_install_rpm_no_remove('sh');
system_("rpm --root $::pwd/root -i media/$medium_name/$name-1-*.rpm");
- check_installed_fullnames("$name-1-1");
+ check_installed_fullnames("$name-1-1", "sh-1-1");
system_("rpm --root $::pwd/root -U media/$medium_name/$name-2-*.rpm");
- check_installed_fullnames_and_remove("$name-2-1");
+ check_installed_fullnames_and_remove("$name-2-1", "sh-1-1");
}