summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorAnssi Hannula <anssi@mandriva.org>2009-08-05 20:07:07 +0000
committerAnssi Hannula <anssi@mandriva.org>2009-08-05 20:07:07 +0000
commit47ea9764f70de9682fa0b38329dd56d21d984381 (patch)
tree9772b571387222a6f31b5b130216242d8bdf1cce /t
parent1b71342f823019c687e3dc9ac2d90feb59b3d7bd (diff)
downloadurpmi-47ea9764f70de9682fa0b38329dd56d21d984381.tar
urpmi-47ea9764f70de9682fa0b38329dd56d21d984381.tar.gz
urpmi-47ea9764f70de9682fa0b38329dd56d21d984381.tar.bz2
urpmi-47ea9764f70de9682fa0b38329dd56d21d984381.tar.xz
urpmi-47ea9764f70de9682fa0b38329dd56d21d984381.zip
Add --split-length 1 where --split-level 1 is used in urpmi test cases.
urpmi used to have a default split-length of 1, but this was changed to 8 some time ago, causing testcases that test both non-splitted and splitted transactions to only test the non-splitted ones. This change fixes that.
Diffstat (limited to 't')
-rw-r--r--t/superuser--obsolete-and-conflict.t2
-rw-r--r--t/superuser--ordering-scriptlets.t4
-rw-r--r--t/superuser--split-transactions--conflict.t8
-rw-r--r--t/superuser--split-transactions--promote.t2
-rw-r--r--t/superuser--split-transactions--strict-require-and-obsolete.t4
-rw-r--r--t/superuser--split-transactions--strict-require.t4
6 files changed, 12 insertions, 12 deletions
diff --git a/t/superuser--obsolete-and-conflict.t b/t/superuser--obsolete-and-conflict.t
index 545ede1e..343f9ed0 100644
--- a/t/superuser--obsolete-and-conflict.t
+++ b/t/superuser--obsolete-and-conflict.t
@@ -20,7 +20,7 @@ urpmi_addmedia("$name $::pwd/media/$name");
test1();
test_with_ad('b c', 'b c d');
-test_with_ad('--split-level 1 b c', 'b c d'); # perl-URPM fix for #31969 fixes this too ("d" used to be removed without asking)
+test_with_ad('--split-level 1 --split-length 1 b c', 'b c d'); # perl-URPM fix for #31969 fixes this too ("d" used to be removed without asking)
# below need promotion of "b" (obsoleting "a") to work
test_with_ad('--auto c', 'b c d');
diff --git a/t/superuser--ordering-scriptlets.t b/t/superuser--ordering-scriptlets.t
index ae9c81a7..6f29ce9d 100644
--- a/t/superuser--ordering-scriptlets.t
+++ b/t/superuser--ordering-scriptlets.t
@@ -19,8 +19,8 @@ test_install_upgrade_rpm("requires_$_") foreach qw(preun postun);
test_install_remove_urpmi("requires_$_", '') foreach qw(pre post preun postun);
test_install_upgrade_urpmi("requires_$_", '') foreach qw(preun postun);
-test_install_remove_urpmi("requires_$_", '--split-level 1') foreach qw(pre post preun postun);
-test_install_upgrade_urpmi("requires_$_", '--split-level 1') foreach qw(preun postun);
+test_install_remove_urpmi("requires_$_", '--split-level 1 --split-length 1') foreach qw(pre post preun postun);
+test_install_upgrade_urpmi("requires_$_", '--split-level 1 --split-length 1') foreach qw(preun postun);
sub test_install_remove_rpm {
my ($name) = @_;
diff --git a/t/superuser--split-transactions--conflict.t b/t/superuser--split-transactions--conflict.t
index 160d0035..d34f7b66 100644
--- a/t/superuser--split-transactions--conflict.t
+++ b/t/superuser--split-transactions--conflict.t
@@ -21,16 +21,16 @@ urpmi_addmedia("$name-1 $::pwd/media/$name-1");
urpmi_addmedia("$name-2 $::pwd/media/$name-2");
test('--split-length 0');
-test('--split-level 1');
+test('--split-level 1 --split-length 1');
test_d('--split-length 0');
-test_d('--split-level 1');
+test_d('--split-level 1 --split-length 1');
test_e('--split-length 0');
-test_e('--split-level 1');
+test_e('--split-level 1 --split-length 1');
test_ae('--split-length 0');
-test_ae('--split-level 1');
+test_ae('--split-level 1 --split-length 1');
sub test {
my ($option) = @_;
diff --git a/t/superuser--split-transactions--promote.t b/t/superuser--split-transactions--promote.t
index 112afe95..2fc80958 100644
--- a/t/superuser--split-transactions--promote.t
+++ b/t/superuser--split-transactions--promote.t
@@ -29,7 +29,7 @@ urpmi_addmedia("$name-1 $::pwd/media/$name-1");
urpmi_addmedia("$name-2 $::pwd/media/$name-2");
test('--split-length 0');
-test('--split-level 1');
+test('--split-level 1 --split-length 1');
test_conflict();
sub test {
diff --git a/t/superuser--split-transactions--strict-require-and-obsolete.t b/t/superuser--split-transactions--strict-require-and-obsolete.t
index 0f8df7b5..ded6afe0 100644
--- a/t/superuser--split-transactions--strict-require-and-obsolete.t
+++ b/t/superuser--split-transactions--strict-require-and-obsolete.t
@@ -20,10 +20,10 @@ urpmi_addmedia("$name-1 $::pwd/media/$name-1");
urpmi_addmedia("$name-2 $::pwd/media/$name-2");
test('--split-length 0');
-test('--split-level 1'); # was broken (#31969)
+test('--split-level 1 --split-length 1'); # was broken (#31969)
test_c('--split-length 0');
-test_c('--split-level 1');
+test_c('--split-level 1 --split-length 1');
sub test {
my ($option) = @_;
diff --git a/t/superuser--split-transactions--strict-require.t b/t/superuser--split-transactions--strict-require.t
index 086cde81..7c48d479 100644
--- a/t/superuser--split-transactions--strict-require.t
+++ b/t/superuser--split-transactions--strict-require.t
@@ -25,9 +25,9 @@ urpmi_addmedia("$name-1 $::pwd/media/$name-1");
urpmi_addmedia("$name-2 $::pwd/media/$name-2");
test('--split-length 0');
-test('--split-level 1');
+test('--split-level 1 --split-length 1');
-test_c('--split-level 1');
+test_c('--split-level 1 --split-length 1');
# test_d();
# ERROR #34224: urpmi goes crazy, saying: