summaryrefslogtreecommitdiff
path: root/bindings
diff options
context:
space:
mode:
authorMichael Gottesman <mgottesman@apple.com>2013-09-10 06:58:00 +0000
committerMichael Gottesman <mgottesman@apple.com>2013-09-10 06:58:00 +0000
commit86942d20b9ca8861207edd49eba13939dfec230a (patch)
tree8dc2245b85289ff7f12229cda5d847705c9f909e /bindings
parent653212fdd1f5b5eea1c5b7d4d28b3f6c8fd05bba (diff)
downloadllvm-86942d20b9ca8861207edd49eba13939dfec230a.tar.gz
llvm-86942d20b9ca8861207edd49eba13939dfec230a.tar.bz2
llvm-86942d20b9ca8861207edd49eba13939dfec230a.tar.xz
[python-bindings] Changed test_memory_buffer_create_from_file to just use the generic provided test_file instead of a binary.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190389 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings')
-rw-r--r--bindings/python/llvm/tests/test_core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python/llvm/tests/test_core.py b/bindings/python/llvm/tests/test_core.py
index 699f3105e8..bd792a1033 100644
--- a/bindings/python/llvm/tests/test_core.py
+++ b/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)