summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/tests/fetch.py
diff options
context:
space:
mode:
authorAlexander Shashkevich <alex@stunpix.com>2016-02-25 18:32:31 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-03-02 22:41:22 +0000
commit865d2feff6178010a21a994e9ed8b155671dc160 (patch)
treed15766d28c93aab5ebcbe3dd1e83678f3a0ac789 /bitbake/lib/bb/tests/fetch.py
parentfb437d338a1ecf09ee800eecb9b2b06b1a73ee51 (diff)
downloadpoky-865d2feff6178010a21a994e9ed8b155671dc160.tar.gz
bitbake: fetch2: fixes copying of file://dir; subdir=foo, bug 6128 and bug 6129
When in SRC_URI appears file://dir;subdir=foo unpacker copies 'dir' to ${WORKDIR}, not ${WORKDIR}/foo as it should be. These changes are fixing following bugs as well: Bug 6128 - Incorrect wildcard unpack behaviour in fetcher Bug 6129 - Local directories unpack to a different location than local files (Bitbake rev: e659a3b0c2771679057ee3e13cd42e6c62383ff2) Signed-off-by: Alexander Shashkevich <alex@stunpix.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/tests/fetch.py')
-rw-r--r--bitbake/lib/bb/tests/fetch.py12
1 files changed, 4 insertions, 8 deletions
diff --git a/bitbake/lib/bb/tests/fetch.py b/bitbake/lib/bb/tests/fetch.py
index d8a36836d6..f6b11d51ea 100644
--- a/bitbake/lib/bb/tests/fetch.py
+++ b/bitbake/lib/bb/tests/fetch.py
@@ -482,9 +482,7 @@ class FetcherLocalTest(FetcherTest):
482 482
483 def test_local_wildcard(self): 483 def test_local_wildcard(self):
484 tree = self.fetchUnpack(['file://a', 'file://dir/*']) 484 tree = self.fetchUnpack(['file://a', 'file://dir/*'])
485 # FIXME: this is broken - it should return ['a', 'dir/c', 'dir/d', 'dir/subdir/e'] 485 self.assertEqual(tree, ['a', 'dir/c', 'dir/d', 'dir/subdir/e'])
486 # see https://bugzilla.yoctoproject.org/show_bug.cgi?id=6128
487 self.assertEqual(tree, ['a', 'b', 'dir/c', 'dir/d', 'dir/subdir/e'])
488 486
489 def test_local_dir(self): 487 def test_local_dir(self):
490 tree = self.fetchUnpack(['file://a', 'file://dir']) 488 tree = self.fetchUnpack(['file://a', 'file://dir'])
@@ -492,17 +490,15 @@ class FetcherLocalTest(FetcherTest):
492 490
493 def test_local_subdir(self): 491 def test_local_subdir(self):
494 tree = self.fetchUnpack(['file://dir/subdir']) 492 tree = self.fetchUnpack(['file://dir/subdir'])
495 # FIXME: this is broken - it should return ['dir/subdir/e'] 493 self.assertEqual(tree, ['dir/subdir/e'])
496 # see https://bugzilla.yoctoproject.org/show_bug.cgi?id=6129
497 self.assertEqual(tree, ['subdir/e'])
498 494
499 def test_local_subdir_file(self): 495 def test_local_subdir_file(self):
500 tree = self.fetchUnpack(['file://dir/subdir/e']) 496 tree = self.fetchUnpack(['file://dir/subdir/e'])
501 self.assertEqual(tree, ['dir/subdir/e']) 497 self.assertEqual(tree, ['dir/subdir/e'])
502 498
503 def test_local_subdirparam(self): 499 def test_local_subdirparam(self):
504 tree = self.fetchUnpack(['file://a;subdir=bar']) 500 tree = self.fetchUnpack(['file://a;subdir=bar', 'file://dir;subdir=foo/moo'])
505 self.assertEqual(tree, ['bar/a']) 501 self.assertEqual(tree, ['bar/a', 'foo/moo/dir/c', 'foo/moo/dir/d', 'foo/moo/dir/subdir/e'])
506 502
507 def test_local_deepsubdirparam(self): 503 def test_local_deepsubdirparam(self):
508 tree = self.fetchUnpack(['file://dir/subdir/e;subdir=bar']) 504 tree = self.fetchUnpack(['file://dir/subdir/e;subdir=bar'])