diff options
author | Per Øyvind Karlsen <peroyvind@mandriva.org> | 2008-03-01 01:24:15 +0000 |
---|---|---|
committer | Per Øyvind Karlsen <peroyvind@mandriva.org> | 2008-03-01 01:24:15 +0000 |
commit | 1990ebb82a9b1d26df548d88c05b43ae2418b19f (patch) | |
tree | 09edd2ec3eb1e30377508710fbb5ba6546ce4be1 /t | |
parent | dc7f77a85166e88620993c701b40bd5d1ed7a2b8 (diff) | |
download | urpmi-1990ebb82a9b1d26df548d88c05b43ae2418b19f.tar urpmi-1990ebb82a9b1d26df548d88c05b43ae2418b19f.tar.gz urpmi-1990ebb82a9b1d26df548d88c05b43ae2418b19f.tar.bz2 urpmi-1990ebb82a9b1d26df548d88c05b43ae2418b19f.tar.xz urpmi-1990ebb82a9b1d26df548d88c05b43ae2418b19f.zip |
don't disable tests for jbj rpm
Diffstat (limited to 't')
-rw-r--r-- | t/superuser--file-conflicts.t | 33 |
1 files changed, 9 insertions, 24 deletions
diff --git a/t/superuser--file-conflicts.t b/t/superuser--file-conflicts.t index b2a8e6da..941eb669 100644 --- a/t/superuser--file-conflicts.t +++ b/t/superuser--file-conflicts.t @@ -34,12 +34,9 @@ test_urpmi_same_transaction(); test_urpmi_different_transactions(); sub test_rpm_same_transaction { - if (rpm_is_jbj_version()) { - # ERROR: disabled, fail (#32528) - } else { - test_rpm_i_fail('a', 'b'); - check_nothing_installed(); - } + + test_rpm_i_fail('a', 'b'); + check_nothing_installed(); test_rpm_i_succeeds('a', 'c'); check_installed_and_remove('a', 'c'); @@ -47,12 +44,8 @@ sub test_rpm_same_transaction { test_rpm_i_succeeds('a', 'd'); check_installed_and_remove('a', 'd'); - if (rpm_is_jbj_version()) { - # ERROR: disabled, fail (#32528) - } else { - test_rpm_i_fail('a', 'e'); - check_nothing_installed(); - } + test_rpm_i_fail('a', 'e'); + check_nothing_installed(); test_rpm_i_succeeds('a', 'fa'); check_installed_and_remove('a', 'fa'); @@ -111,12 +104,8 @@ sub test_rpm_different_transactions { } sub test_urpmi_same_transaction { - if (rpm_is_jbj_version()) { - # ERROR: disabled, fail (#32528) - } else { - test_urpmi_fail('a b'); - check_nothing_installed(); - } + test_urpmi_fail('a b'); + check_nothing_installed(); urpmi('a c'); check_installed_and_remove('a', 'c'); @@ -124,12 +113,8 @@ sub test_urpmi_same_transaction { urpmi('a d'); check_installed_and_remove('a', 'd'); - if (rpm_is_jbj_version()) { - # ERROR: disabled, fail (#32528) - } else { - test_urpmi_fail('a e'); - check_nothing_installed(); - } + test_urpmi_fail('a e'); + check_nothing_installed(); urpmi('a fa'); check_installed_and_remove('a', 'fa'); |