Add cases for general IPMI

- Add case to test Get Self Test Results via IPMI
- Add case to verify device GUID

Signed-off-by: Tony Lee <tony.lee@quantatw.com>
Change-Id: Ieb320908967f8b93e002ab8cd1714ce5d535b7c2
diff --git a/data/ipmi_raw_cmd_table.py b/data/ipmi_raw_cmd_table.py
index 4e1c811..73ca0ae 100644
--- a/data/ipmi_raw_cmd_table.py
+++ b/data/ipmi_raw_cmd_table.py
@@ -88,5 +88,26 @@
             "27 00",
             "27 is Reservation ID, LSB, 00 Reservation ID, MSB ",
         ]
+    },
+    'Self_Test_Results':
+    {
+        'Get':
+        [
+            # raw command, expected output(s), comment
+            "0x06 0x04",
+            "56 00",
+            "56h = Self Test function not implemented in this controller.",
+        ]
+    },
+    'Device GUID':
+    {
+        'Get':
+        [
+            # raw command, expected output(s), comment
+            "0x06 0x08",
+            "01 70 9b ae da 6f dd 9c b4 4c 36 be 66 c8 49 28",
+            "Get GUID bytes 1 through 16.",
+
+        ]
     }
 }