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 a81dcb1366..ec86885220 100644
--- a/bitbake/lib/bb/command.py
+++ b/bitbake/lib/bb/command.py
@@ -667,6 +667,16 @@ class CommandsAsync:
667 command.finishAsyncCommand() 667 command.finishAsyncCommand()
668 findFilesMatchingInDir.needcache = False 668 findFilesMatchingInDir.needcache = False
669 669
670 def testCookerCommandEvent(self, command, params):
671 """
672 Dummy command used by OEQA selftest to test tinfoil without IO
673 """
674 pattern = params[0]
675
676 command.cooker.testCookerCommandEvent(pattern)
677 command.finishAsyncCommand()
678 testCookerCommandEvent.needcache = False
679
670 def findConfigFilePath(self, command, params): 680 def findConfigFilePath(self, command, params):
671 """ 681 """
672 Find the path of the requested configuration file 682 Find the path of the requested configuration file