diff options
author | Michael Gottesman <mgottesman@apple.com> | 2013-09-10 06:58:00 +0000 |
---|---|---|
committer | Michael Gottesman <mgottesman@apple.com> | 2013-09-10 06:58:00 +0000 |
commit | e0bc30284c9d0c84d03aab3b245fbeb5fef0ddd5 (patch) | |
tree | b6919f76f2fc0230baac92d9c9d772ddb2c25515 /llvm/bindings/python | |
parent | f125e00e37bc7c5c7826a01b5a7d3e7c9d3aa964 (diff) | |
download | bcm5719-llvm-e0bc30284c9d0c84d03aab3b245fbeb5fef0ddd5.tar.gz bcm5719-llvm-e0bc30284c9d0c84d03aab3b245fbeb5fef0ddd5.zip |
[python-bindings] Changed test_memory_buffer_create_from_file to just use the generic provided test_file instead of a binary.
llvm-svn: 190389
Diffstat (limited to 'llvm/bindings/python')
-rw-r--r-- | llvm/bindings/python/llvm/tests/test_core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/bindings/python/llvm/tests/test_core.py b/llvm/bindings/python/llvm/tests/test_core.py index 699f3105e81..bd792a10330 100644 --- a/llvm/bindings/python/llvm/tests/test_core.py +++ b/llvm/bindings/python/llvm/tests/test_core.py @@ -13,7 +13,7 @@ class TestCore(TestBase): self.assertEqual(op, OpCode.Ret) def test_memory_buffer_create_from_file(self): - source = self.get_test_binary() + source = self.get_test_file() MemoryBuffer(filename=source) |