[gnome-continuous-yocto/gnomeostree-3.28-rocko: 1220/8267] bitbake: eventprelay: implement setEventMask command



commit 2199ff5ce69d8b90dff8306ffe8f0f5693b39645
Author: Ed Bartosh <ed bartosh linux intel com>
Date:   Wed Jul 6 12:00:30 2016 +0100

    bitbake: eventprelay: implement setEventMask command
    
    Stored event mask list as self.eventmask for future use.
    Fixed Exception: Command setEventMask not implemented.
    
    [YOCTO #9585]
    
    (Bitbake rev: 2e09074c70e89402de8f883dd402cd729118fc7e)
    
    Signed-off-by: Ed Bartosh <ed bartosh linux intel com>
    Signed-off-by: Elliot Smith <elliot smith intel com>
    Signed-off-by: Richard Purdie <richard purdie linuxfoundation org>

 bitbake/bin/toaster-eventreplay |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)
---
diff --git a/bitbake/bin/toaster-eventreplay b/bitbake/bin/toaster-eventreplay
index 14f4f00..03b5dde 100755
--- a/bitbake/bin/toaster-eventreplay
+++ b/bitbake/bin/toaster-eventreplay
@@ -53,6 +53,7 @@ class FileReadEventsServerConnection():
         """
         def __init__(self, sc):
             self._sc = sc
+            self.eventmask = []
 
         def runCommand(self, commandArray):
             """ emulates running a command on the server; only read-only commands are accepted """
@@ -79,6 +80,11 @@ class FileReadEventsServerConnection():
                     except Exception as e:
                         print(e)
                 return (dump, None)
+
+            elif command_name == 'setEventMask':
+                self.eventmask = commandArray[-1]
+                return True, None
+
             else:
                 raise Exception("Command %s not implemented" % commandArray[0])
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]