diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-12 08:04:17 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-13 13:41:32 +0100 |
commit | ca824a976a131d0955f61cff3df9711efd10de63 (patch) | |
tree | 3259bcdb199b0de7f74e4ae115e400fc5bc14d4a /bitbake/lib/bb/tests | |
parent | ef4a7c30caa294969cd99222f80e1948cc24b2e5 (diff) | |
download | poky-ca824a976a131d0955f61cff3df9711efd10de63.tar.gz |
bitbake: fetch: Use OrderedDict for url parameters
Without this, the dict can reorder causing sanity test failures.
(Bitbake rev: ca8c91acc9396385834b266d4e8b84d917e5e298)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/tests')
-rw-r--r-- | bitbake/lib/bb/tests/fetch.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/bitbake/lib/bb/tests/fetch.py b/bitbake/lib/bb/tests/fetch.py index cba783f5ab..5ff156ccdd 100644 --- a/bitbake/lib/bb/tests/fetch.py +++ b/bitbake/lib/bb/tests/fetch.py | |||
@@ -22,6 +22,7 @@ | |||
22 | import unittest | 22 | import unittest |
23 | import tempfile | 23 | import tempfile |
24 | import subprocess | 24 | import subprocess |
25 | import collections | ||
25 | import os | 26 | import os |
26 | from bb.fetch2 import URI | 27 | from bb.fetch2 import URI |
27 | from bb.fetch2 import FetchMethod | 28 | from bb.fetch2 import FetchMethod |
@@ -133,10 +134,10 @@ class URITest(unittest.TestCase): | |||
133 | 'userinfo': 'anoncvs:anonymous', | 134 | 'userinfo': 'anoncvs:anonymous', |
134 | 'username': 'anoncvs', | 135 | 'username': 'anoncvs', |
135 | 'password': 'anonymous', | 136 | 'password': 'anonymous', |
136 | 'params': { | 137 | 'params': collections.OrderedDict([ |
137 | 'tag': 'V0-99-81', | 138 | ('tag', 'V0-99-81'), |
138 | 'module': 'familiar/dist/ipkg' | 139 | ('module', 'familiar/dist/ipkg') |
139 | }, | 140 | ]), |
140 | 'query': {}, | 141 | 'query': {}, |
141 | 'relative': False | 142 | 'relative': False |
142 | }, | 143 | }, |
@@ -660,7 +661,7 @@ class URLHandle(unittest.TestCase): | |||
660 | datatable = { | 661 | datatable = { |
661 | "http://www.google.com/index.html" : ('http', 'www.google.com', '/index.html', '', '', {}), | 662 | "http://www.google.com/index.html" : ('http', 'www.google.com', '/index.html', '', '', {}), |
662 | "cvs://anoncvs@cvs.handhelds.org/cvs;module=familiar/dist/ipkg" : ('cvs', 'cvs.handhelds.org', '/cvs', 'anoncvs', '', {'module': 'familiar/dist/ipkg'}), | 663 | "cvs://anoncvs@cvs.handhelds.org/cvs;module=familiar/dist/ipkg" : ('cvs', 'cvs.handhelds.org', '/cvs', 'anoncvs', '', {'module': 'familiar/dist/ipkg'}), |
663 | "cvs://anoncvs:anonymous@cvs.handhelds.org/cvs;tag=V0-99-81;module=familiar/dist/ipkg" : ('cvs', 'cvs.handhelds.org', '/cvs', 'anoncvs', 'anonymous', {'tag': 'V0-99-81', 'module': 'familiar/dist/ipkg'}), | 664 | "cvs://anoncvs:anonymous@cvs.handhelds.org/cvs;tag=V0-99-81;module=familiar/dist/ipkg" : ('cvs', 'cvs.handhelds.org', '/cvs', 'anoncvs', 'anonymous', collections.OrderedDict([('tag', 'V0-99-81'), ('module', 'familiar/dist/ipkg')])), |
664 | "git://git.openembedded.org/bitbake;branch=@foo" : ('git', 'git.openembedded.org', '/bitbake', '', '', {'branch': '@foo'}), | 665 | "git://git.openembedded.org/bitbake;branch=@foo" : ('git', 'git.openembedded.org', '/bitbake', '', '', {'branch': '@foo'}), |
665 | "file://somelocation;someparam=1": ('file', '', 'somelocation', '', '', {'someparam': '1'}), | 666 | "file://somelocation;someparam=1": ('file', '', 'somelocation', '', '', {'someparam': '1'}), |
666 | } | 667 | } |