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:
parent
e2679a6fd3
commit
ed0ae261bf
1 changed files with 7 additions and 4 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue