summaryrefslogtreecommitdiff
path: root/test/integration/test-release-candidate-switching
AgeCommit message (Collapse)AuthorFilesLines
2016-03-16do not strip epochs from state version stringsDavid Kalnischkies1-29/+29
The epoch stripping in this code is done since day one, but in other places we show a version epochs are not stripped. If epochs are present in packages they tend to be an important information which we can't just drop and especially can't drop "sometimes" as that confuses users and tools alike – so even if removing code in use for (close to) 18 years feels wrong, it is probably the right choice for consistency. Closes: 818162
2015-12-19tests: support spaces in path and TMPDIRDavid Kalnischkies1-2/+2
This doesn't allow all tests to run cleanly, but it at least allows to write tests which could run successfully in such environments. Git-Dch: Ignore
2015-11-19tests: use quiet level 0 by default in testsDavid Kalnischkies1-16/+16
Git-Dch: Ignore
2015-08-17Fix the test suite againJulian Andres Klode1-15/+15
Gbp-Dch: ignore
2015-08-10show or-groups in not-installed recommends and suggests listsDavid Kalnischkies1-1/+1
Further abstracting our new ShowList allows to use it for containers of strings as well giving us the option to implement an or-groups display for the recommends and suggests lists which is a nice trick given that it also helps with migrating the last remaining other cases of old ShowList.
2015-03-16test exitcode as well as string equalityDavid Kalnischkies1-16/+16
We use test{success,failure} now all over the place in the framework, so its only consequencial to do this in the situations in which we test for a specific output as well. Git-Dch: Ignore
2011-05-17* cmdline/apt-get.cc:David Kalnischkies1-1/+1
- do not discard the error messages from the resolver and instead only show the general 'Broken packages' message if nothing else
2011-03-25* apt-pkg/cacheiterator.h:David Kalnischkies1-15/+15
- return "all" instead of native architecture without breaking the abi (too much) by extending enum instead of using bitflags (LP: #733741) With the next abi break that enum should be a char bitflag instead
2011-03-08Remove the "pseudopackage" handling of Architecture: all packages forDavid Kalnischkies1-15/+15
Multi-Arch; instead, Arch: all packages only satisfy dependencies for the native arch, except where the Arch: all package is declared Multi-Arch: foreign. (Closes: #613584) This has the sideeffect that arch:all packages internally show up as coming from the native arch - so packages with the architecture "all" doesn't exist any longer in the pkgcache
2011-02-15test/integration/: remove a bunch of "local" statements from the ↵Michael Vogt1-1/+1
shellscript, keep tests running even on failure but log failures
2010-12-03really do not show packages in the extra section if they wereDavid Kalnischkies1-16/+0
requested on the commandline, e.g. with a modifier
2010-12-03* apt-pkg/depcache.cc:David Kalnischkies1-0/+435
- add SetCandidateRelease() to set a candidate version and the candidates of dependencies if needed to a specified release (Closes: #572709) - change pkg/release behavior to use the new SetCandidateRelease so installing packages from experimental or backports is easier