From: Michael Gottesman Date: Tue, 10 Sep 2013 06:58:00 +0000 (+0000) Subject: [python-bindings] Changed test_memory_buffer_create_from_file to just use the generic... X-Git-Tag: android-x86-6.0-r1~129^2~2245 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=86942d20b9ca8861207edd49eba13939dfec230a;p=android-x86%2Fexternal-llvm.git [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 --- diff --git a/bindings/python/llvm/tests/test_core.py b/bindings/python/llvm/tests/test_core.py index 699f3105e81..bd792a10330 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)