summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--llvm/bindings/python/llvm/tests/test_object.py16
1 files changed, 9 insertions, 7 deletions
diff --git a/llvm/bindings/python/llvm/tests/test_object.py b/llvm/bindings/python/llvm/tests/test_object.py
index 3f92d8155b6..a45b7beec33 100644
--- a/llvm/bindings/python/llvm/tests/test_object.py
+++ b/llvm/bindings/python/llvm/tests/test_object.py
@@ -1,3 +1,5 @@
+from numbers import Integral
+
from .base import TestBase
from ..object import ObjectFile
from ..object import Relocation
@@ -20,9 +22,9 @@ class TestObjectFile(TestBase):
count += 1
assert isinstance(section, Section)
assert isinstance(section.name, str)
- assert isinstance(section.size, long)
+ assert isinstance(section.size, Integral)
assert isinstance(section.contents, str)
- assert isinstance(section.address, long)
+ assert isinstance(section.address, Integral)
assert len(section.contents) == section.size
self.assertGreater(count, 0)
@@ -38,8 +40,8 @@ class TestObjectFile(TestBase):
count += 1
assert isinstance(symbol, Symbol)
assert isinstance(symbol.name, str)
- assert isinstance(symbol.address, long)
- assert isinstance(symbol.size, long)
+ assert isinstance(symbol.address, Integral)
+ assert isinstance(symbol.size, Integral)
self.assertGreater(count, 0)
@@ -60,8 +62,8 @@ class TestObjectFile(TestBase):
for section in o.get_sections():
for relocation in section.get_relocations():
assert isinstance(relocation, Relocation)
- assert isinstance(relocation.address, long)
- assert isinstance(relocation.offset, long)
- assert isinstance(relocation.type_number, long)
+ assert isinstance(relocation.address, Integral)
+ assert isinstance(relocation.offset, Integral)
+ assert isinstance(relocation.type_number, Integral)
assert isinstance(relocation.type_name, str)
assert isinstance(relocation.value_string, str)
OpenPOWER on IntegriCloud