From c62ee64925fbf1b61efca3b38d51029b07744894 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Sat, 2 May 2020 14:39:22 -0400 Subject: Add check on equality operators of structure objects --- suite/testcommon.py | 1 + 1 file changed, 1 insertion(+) diff --git a/suite/testcommon.py b/suite/testcommon.py index ea0df719..de2360cc 100644 --- a/suite/testcommon.py +++ b/suite/testcommon.py @@ -583,6 +583,7 @@ class TestBuilder(Builder): struct.packed = 1 retinfo.append("Struct packed after adjustment: " + str(struct.packed)) retinfo.append("Struct type: " + str(struct.type)) + retinfo.append(str((struct == struct) and not (struct != struct))) return retinfo def test_Enumeration(self): -- cgit v1.3.1