examples: support crash events in event-test.py

commit 14e7e0ae8d adds the support for
crash events.

Solves: https://bugzilla.redhat.com/show_bug.cgi?id=994317

Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
This commit is contained in:
Giuseppe Scrivano 2013-08-14 23:06:25 +02:00 committed by Eric Blake
parent 6ebdf35cfe
commit 2576f17805

View File

@ -437,7 +437,8 @@ def eventToString(event):
"Resumed",
"Stopped",
"Shutdown",
"PMSuspended" )
"PMSuspended",
"Crashed" )
return eventStrings[event]
def detailToString(event, detail):
@ -449,7 +450,8 @@ def detailToString(event, detail):
( "Unpaused", "Migrated", "Snapshot" ),
( "Shutdown", "Destroyed", "Crashed", "Migrated", "Saved", "Failed", "Snapshot"),
( "Finished", ),
( "Memory", "Disk" )
( "Memory", "Disk" ),
( "Panicked", )
)
return eventStrings[event][detail]