From e3295cc5be7f7b2e3bb27e6bf94cd5c569f54876 Mon Sep 17 00:00:00 2001 From: Anders Waldenborg Date: Thu, 22 Mar 2012 11:23:52 +0000 Subject: [PATCH] [python] Add negative MemoryBuffer testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153248 91177308-0d34-0410-b5e6-96231b3b80d8 --- bindings/python/llvm/tests/test_core.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bindings/python/llvm/tests/test_core.py b/bindings/python/llvm/tests/test_core.py index 8123e15bad7..545abc826ea 100644 --- a/bindings/python/llvm/tests/test_core.py +++ b/bindings/python/llvm/tests/test_core.py @@ -16,3 +16,8 @@ class TestCore(TestBase): source = self.get_test_binary() MemoryBuffer(filename=source) + + def test_memory_buffer_failing(self): + with self.assertRaises(Exception): + MemoryBuffer(filename="/hopefully/this/path/doesnt/exist") + -- 2.34.1