fix cast of pointer to long

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11042 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2009-01-08 19:35:13 +00:00
commit ed0ae261bf

View file

@ -12,12 +12,15 @@ if a1.this != a2.this:
lthis = long(a.this)
xstr1 = "0x%x" % (lthis,)
# match pointer value, but deal with leading zeros on 8/16 bit systems
xstr8bit = "%08X" % (lthis,)
xstr16bit = "%016X" % (lthis,)
xstr2 = pointer_str(a)
if xstr1 != xstr2:
print xstr1, xstr2
raise RuntimeError
if xstr8bit != xstr2:
if xstr16bit != xstr2:
print xstr8bit, xstr16bit, xstr2
raise RuntimeError
s = str(a.this)
r = repr(a.this)