summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/command.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/command.py')
-rw-r--r--bitbake/lib/bb/command.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py
index 07128027fd..98c945edb5 100644
--- a/bitbake/lib/bb/command.py
+++ b/bitbake/lib/bb/command.py
@@ -624,6 +624,16 @@ class CommandsAsync:
624 command.finishAsyncCommand() 624 command.finishAsyncCommand()
625 findFilesMatchingInDir.needcache = False 625 findFilesMatchingInDir.needcache = False
626 626
627 def testCookerCommandEvent(self, command, params):
628 """
629 Dummy command used by OEQA selftest to test tinfoil without IO
630 """
631 pattern = params[0]
632
633 command.cooker.testCookerCommandEvent(pattern)
634 command.finishAsyncCommand()
635 testCookerCommandEvent.needcache = False
636
627 def findConfigFilePath(self, command, params): 637 def findConfigFilePath(self, command, params):
628 """ 638 """
629 Find the path of the requested configuration file 639 Find the path of the requested configuration file