summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/tests/fetch.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2020-08-25 14:49:12 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-08-26 09:05:38 +0100
commit1560a4b0cbb8b7ad12623635c64ce43d962e8dce (patch)
tree1e78e359a8f93bd7fe4e3e534ea1f7fabbaaa692 /bitbake/lib/bb/tests/fetch.py
parent3cfc4e9fa92ac594a137a4b6b29ae6ca980b26d6 (diff)
downloadpoky-1560a4b0cbb8b7ad12623635c64ce43d962e8dce.tar.gz
bitbake: fetch2: Drop globbing supprt in file:// SRC_URIs
Globbing in file:// urls is terminally broken. Currently when its used, the file checksum code is basically bypassed. This means changes to the source files don't change the task checksum, the task doesn't rebuild when the inputs change and things generally break. To make globbing work generically, we'd have to scan the file system for all possible matches to the glob and log whether they exist or not. We can't simply log the files which exist, we have to also know which files could later exist and influence the choice of file so we know when to reparse. For a simple file://xxx/*, this could be done but for bigger patterns, it becomes much more problemtic. We already support file://xxx/ in urls. So, lets decide we'll not support globs in file://urls. Worse case users can put files in a directory and reference that, moving files into place if needed. Remove all the glob special cases (see the comments if anyone doesn't believe this is terminally broken) and error to the user if they have such urls. (Bitbake rev: 0c9302d950c6f37bfcc4256b41001d63f668bdf7) 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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/tests/fetch.py b/bitbake/lib/bb/tests/fetch.py
index 61b80bedee..13561cea9b 100644
--- a/bitbake/lib/bb/tests/fetch.py
+++ b/bitbake/lib/bb/tests/fetch.py
@@ -602,8 +602,8 @@ class FetcherLocalTest(FetcherTest):
602 self.assertEqual(tree, ['a', 'dir/c']) 602 self.assertEqual(tree, ['a', 'dir/c'])
603 603
604 def test_local_wildcard(self): 604 def test_local_wildcard(self):
605 tree = self.fetchUnpack(['file://a', 'file://dir/*']) 605 with self.assertRaises(bb.fetch2.ParameterError):
606 self.assertEqual(tree, ['a', 'dir/c', 'dir/d', 'dir/subdir/e']) 606 tree = self.fetchUnpack(['file://a', 'file://dir/*'])
607 607
608 def test_local_dir(self): 608 def test_local_dir(self):
609 tree = self.fetchUnpack(['file://a', 'file://dir']) 609 tree = self.fetchUnpack(['file://a', 'file://dir'])