diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2011-07-25 13:40:50 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2011-07-25 13:40:50 +0200 |
commit | c3182c823bdba037e7f1daaffde8b44155ff4f48 (patch) | |
tree | 1c550389d64a90933f4c6286cbce1cc2c966ac3c /test | |
parent | 550f6493654e921a8af860694efdb268c9b2a47c (diff) |
update the testcase to reflect that native is always on top if
it is not in the config provided list of Architectures
Diffstat (limited to 'test')
-rw-r--r-- | test/libapt/getarchitectures_test.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/libapt/getarchitectures_test.cc b/test/libapt/getarchitectures_test.cc index 1500caeed..e3ca7bbc2 100644 --- a/test/libapt/getarchitectures_test.cc +++ b/test/libapt/getarchitectures_test.cc @@ -39,6 +39,12 @@ int main(int argc,char *argv[]) _config->Set("APT::Architecture", "armel"); vec = APT::Configuration::getArchitectures(false); equals(vec.size(), 2); + equals(vec[0], "armel"); + equals(vec[1], "i386"); + + _config->Set("APT::Architectures::2", "armel"); + vec = APT::Configuration::getArchitectures(false); + equals(vec.size(), 2); equals(vec[0], "i386"); equals(vec[1], "armel"); |