Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | add 2 other possible transaction orders | Thierry Vignaud | 2013-10-04 | 1 | -0/+2 |
| | | | | | | needed due to perl-5.18 random keys order it could alternatively be workarounded by sorting packages in genhdlist2 | ||||
* | factorize possible transaction sets definition | Thierry Vignaud | 2013-10-04 | 1 | -19/+18 |
| | | | | (needed for next commit) | ||||
* | simplify: use member() | Thierry Vignaud | 2013-10-04 | 1 | -1/+1 |
| | | | | (needed for next commit) | ||||
* | adapt to perl-5.18's random hash keys ordering | Thierry Vignaud | 2013-10-04 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | (translate_why_removed_one) ensure we got the right reason (testsuite) adapt to new URPM predictible behaviour it was previously relying on the following fixed hash order: $ perl -MData::Dumper -e 'warn Dumper [ keys {'rr1', 'rr1', 'rr2', 'rr2'} ]; \ warn Dumper [ keys {'bb1', 'bb1', 'bb2', 'bb2-1'} ]' $VAR1 = [ 'rr2', 'rr1' ]; $VAR1 = [ 'bb1', 'bb2' ]; | ||||
* | (install_logger) keep a separate counter for erasures | Thierry Vignaud | 2013-02-09 | 1 | -3/+3 |
| | | | | | | | | | | only initialize $total_pkg: - when starting a new transaction - or on first erasure in transaction (_compute_pkg_total) kill it (no more needed) adjust testsuite accordingly | ||||
* | (install_logger) unify with callback_uninst(), thus fixing counting for | Thierry Vignaud | 2013-02-05 | 1 | -4/+5 |
| | | | | | | | | | | erasures (callback_uninst) restore quiet behavior when not in verbose mode (install) temporary set $urpm->{trans} adapt testsuite | ||||
* | (callback_uninst) display erasure progress | Thierry Vignaud | 2013-02-03 | 1 | -0/+1 |
| | | | | | | inspirated from install_logger() adjust testsuite accordingly | ||||
* | wrap comment | Thierry Vignaud | 2013-02-03 | 1 | -3/+2 |
| | |||||
* | fix that test when prelink is installed | Thierry Vignaud | 2013-01-31 | 1 | -0/+7 |
| | |||||
* | revert my previous commits, this was a bad anyway | Guillaume Rousse | 2012-12-10 | 5 | -79/+11 |
| | |||||
* | drop executable bit, as for other tests | Guillaume Rousse | 2012-12-08 | 3 | -0/+0 |
| | |||||
* | obsoleted by pod-syntax.t | Guillaume Rousse | 2012-12-06 | 1 | -5/+0 |
| | |||||
* | oops, forgotten during previous commit | Guillaume Rousse | 2012-12-06 | 1 | -0/+0 |
| | |||||
* | rename pod-related tests | Guillaume Rousse | 2012-12-06 | 2 | -0/+0 |
| | |||||
* | initial import | Guillaume Rousse | 2012-12-05 | 1 | -0/+27 |
| | |||||
* | initial import | Guillaume Rousse | 2012-12-05 | 1 | -0/+24 |
| | |||||
* | use Test::Compile for more automation | Guillaume Rousse | 2012-12-05 | 1 | -6/+10 |
| | |||||
* | initial import | Guillaume Rousse | 2012-12-05 | 1 | -0/+18 |
| | |||||
* | drop support for rpm5 | Thierry Vignaud | 2012-10-04 | 4 | -20/+1 |
| | |||||
* | (test_urpmi) ignore new "SECURITY:" messages | Thierry Vignaud | 2012-08-31 | 1 | -0/+1 |
| | |||||
* | fix testsuite: use new --no-verify-rpm option | Thierry Vignaud | 2012-08-31 | 1 | -1/+1 |
| | |||||
* | silent a 4years+ old warning when running testsuite | Thierry Vignaud | 2012-06-13 | 1 | -1/+1 |
| | | | | | option --src is deprecated by --buildrequires since commit r233081 by pixel on Fri Jan 18 2008... | ||||
* | fix a testsuite regression with rpm-4.10.0 | Thierry Vignaud | 2012-06-08 | 1 | -1/+5 |
| | | | | | | | | disable failing %%pretrans test with rpm-4.10.0 which now fails with: "error: pretrans-1-1.x86_64: install skipped" b/c in rpm-4.10.0: "%pretrans scriptlet failure now fails the install of the package %(similarly to %pre and %preun semantics)" | ||||
* | fix testsuite faillure introduced in commit r3103 on Feb 27 2012: | Thierry Vignaud | 2012-06-08 | 3 | -4/+4 |
| | | | | | | | | | "fix urpmi failing silently and with exit status 0 when package installation fails due to either conflicts (mdv#63072) or to unselecting package (inspirated by mdv, mdv#63940)" urpmi now exit with 17 instead of 0 in that case unless we comment "$exit_code ||= $urpm::postponed_code;" in urpmi | ||||
* | (system_should_partially_fail,urpmi_partial) introduce them for next commit | Thierry Vignaud | 2012-06-08 | 1 | -1/+10 |
| | |||||
* | (test_exotic_medium_name) skip test when building as root in /root | Thierry Vignaud | 2012-06-08 | 1 | -0/+5 |
| | | | | | | | | | else File::Path::mkpath() in urpm::create_var_lib_rpm() tries to create directories in /root/rpmbuild/urpmi*/t/root (but as nobody), thus it stat every directory in $PWD, which fails (due to permissions!) then try to create them which fails (due to directory already existing) another solution would be to use a mkstemp()ed directory in TMPDIR... | ||||
* | fix 4years+ old warning when running testsuite | Thierry Vignaud | 2012-06-08 | 1 | -1/+1 |
| | | | | | -option --src is deprecated by --buildrequires since commit r233081 by pixel on Fri Jan 18 2008... | ||||
* | (handle_need_restart) enable to test "should restart" again | Thierry Vignaud | 2012-02-27 | 1 | -2/+4 |
| | | | | | it didn't work since commit r263652 on Tue Nov 24 2009 (was: "(handle_need_restart) do not advice to reboot when inside a chroot") | ||||
* | (system_should_fail) on some error questions ("Do you want to... | Thierry Vignaud | 2012-02-27 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | | (y/N)?"), urpmi doesn't output "\n", which breaks parsing: t/superuser--handle-conflict-deps2.t ............................ Failed 2/18 subtests (...) Test Summary Report ------------------- t/superuser--handle-conflict-deps2.t (Wstat: 0 Tests: 16 Failed: 0) Parse errors: Tests out of sequence. Found (6) but expected (5) Tests out of sequence. Found (7) but expected (6) Tests out of sequence. Found (8) but expected (7) Tests out of sequence. Found (9) but expected (8) Tests out of sequence. Found (10) but expected (9) Displayed the first 5 of 13 TAP syntax errors. Re-run prove with the -p option to see them all. eg: Continue installation anyway? (Y/n) ok 5 - should fail: echo n | perl -I.. ../urpmi --urpmi-root /urpmi/t/root -q c-2 d1-2 | ||||
* | kill unused DUDF support (mga#4493) | Thierry Vignaud | 2012-02-14 | 1 | -1/+1 |
| | |||||
* | do not test urpm::dudf | Thierry Vignaud | 2012-01-23 | 1 | -2/+2 |
| | |||||
* | fix another stupide failure | Thierry Vignaud | 2011-12-18 | 1 | -1/+1 |
| | |||||
* | fix stupid testsuite faillure on mageia... | Thierry Vignaud | 2011-12-18 | 1 | -1/+1 |
| | |||||
* | Add urpmi testcase for bug #57224 (disabled until fixed) | Anssi Hannula | 2010-01-24 | 6 | -1/+99 |
| | |||||
* | testsuite: fix backtrack-promotion.t for 32bit | Anssi Hannula | 2010-01-23 | 1 | -3/+1 |
| | |||||
* | testsuite: When trying to install two conflicting packages, consider | Anssi Hannula | 2010-01-23 | 2 | -9/+22 |
| | | | | | | the tests passed if either of them is installed succesfully after alerting the user. | ||||
* | add comment about tests known not to work | Christophe Fergeau | 2010-01-12 | 2 | -0/+4 |
| | |||||
* | adjust tests for string changes | Christophe Fergeau | 2010-01-12 | 2 | -3/+3 |
| | |||||
* | adjust parsing of orphan message in auto-orphan test | Christophe Fergeau | 2010-01-12 | 1 | -1/+1 |
| | |||||
* | adjust expected test results | Christophe Fergeau | 2010-01-12 | 2 | -4/+4 |
| | | | | | | These tests have 2 valid outputs depending on which order the packages are picked by urpmi, seems this order changed, so we have to adjust the expected results | ||||
* | undefine distepoch & disttag so that it won't affect buildroot name | Per Øyvind Karlsen | 2009-08-19 | 1 | -0/+2 |
| | |||||
* | Enable urpmi testcase for now fixed bug #52667. | Anssi Hannula | 2009-08-11 | 1 | -2/+2 |
| | |||||
* | Add urpmi testcase for bug #52667. (disabled until fixed) | Anssi Hannula | 2009-08-05 | 6 | -0/+91 |
| | |||||
* | Add --split-length 1 where --split-level 1 is used in urpmi test cases. | Anssi Hannula | 2009-08-05 | 6 | -12/+12 |
| | | | | | | | 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. | ||||
* | Enable urpmi testcase for now fixed bug #52135. | Anssi Hannula | 2009-08-04 | 1 | -2/+2 |
| | |||||
* | dudf patch from Olivier Rosello for the Mancoosi project | Christophe Fergeau | 2009-07-30 | 1 | -1/+1 |
| | |||||
* | add testcase for bug #52153 | Christophe Fergeau | 2009-07-28 | 1 | -4/+10 |
| | | | | Patch by Anssi Hannula | ||||
* | add testcase for bug #52169 into srpm-bootstrapping.t (disabled until fixed) | Anssi Hannula | 2009-07-09 | 1 | -0/+1 |
| | |||||
* | Print all parameters when entering test_auto_select_raw_urpmq_urpme | Anssi Hannula | 2009-07-09 | 1 | -1/+1 |
| | | | | | in orphans.t (one was missing). | ||||
* | Adapt string match in orphans.t for changes in urpmi. | Anssi Hannula | 2009-07-09 | 1 | -1/+1 |
| |