diff options
author | Anders Waldenborg <anders@0x63.nu> | 2014-04-23 20:32:03 +0000 |
---|---|---|
committer | Anders Waldenborg <anders@0x63.nu> | 2014-04-23 20:32:03 +0000 |
commit | 614dda1ef387a6851a0ae21f7d3e0f502580e434 (patch) | |
tree | 4e057c9c04c8786570b29a575f5b944ed38f5386 | |
parent | 4c6ab696e24649f8fc4843269f37f4a5466533bb (diff) | |
download | bcm5719-llvm-614dda1ef387a6851a0ae21f7d3e0f502580e434.tar.gz bcm5719-llvm-614dda1ef387a6851a0ae21f7d3e0f502580e434.zip |
[python] Fix python bindings tests
Broke after the changes related to the LLVMGetSymbolFileOffset
removal in r206750
llvm-svn: 207018
-rw-r--r-- | llvm/bindings/python/llvm/tests/test_object.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/bindings/python/llvm/tests/test_object.py b/llvm/bindings/python/llvm/tests/test_object.py index 7ff981b6a2f..5662d2240e0 100644 --- a/llvm/bindings/python/llvm/tests/test_object.py +++ b/llvm/bindings/python/llvm/tests/test_object.py @@ -39,7 +39,6 @@ class TestObjectFile(TestBase): assert isinstance(symbol.name, str) assert isinstance(symbol.address, long) assert isinstance(symbol.size, long) - assert isinstance(symbol.file_offset, long) self.assertGreater(count, 0) |