diff options
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 1f55d9ad73..af794b4c42 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -1068,6 +1068,11 @@ class BBCooker: | |||
1068 | if matches: | 1068 | if matches: |
1069 | bb.event.fire(bb.event.FilesMatchingFound(filepattern, matches), self.data) | 1069 | bb.event.fire(bb.event.FilesMatchingFound(filepattern, matches), self.data) |
1070 | 1070 | ||
1071 | def testCookerCommandEvent(self, filepattern): | ||
1072 | # Dummy command used by OEQA selftest to test tinfoil without IO | ||
1073 | matches = ["A", "B"] | ||
1074 | bb.event.fire(bb.event.FilesMatchingFound(filepattern, matches), self.data) | ||
1075 | |||
1071 | def findProviders(self, mc=''): | 1076 | def findProviders(self, mc=''): |
1072 | return bb.providers.findProviders(self.databuilder.mcdata[mc], self.recipecaches[mc], self.recipecaches[mc].pkg_pn) | 1077 | return bb.providers.findProviders(self.databuilder.mcdata[mc], self.recipecaches[mc], self.recipecaches[mc].pkg_pn) |
1073 | 1078 | ||