[python] Add negative MemoryBuffer testcase
authorAnders Waldenborg <anders@0x63.nu>
Thu, 22 Mar 2012 11:23:52 +0000 (11:23 +0000)
committerAnders Waldenborg <anders@0x63.nu>
Thu, 22 Mar 2012 11:23:52 +0000 (11:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153248 91177308-0d34-0410-b5e6-96231b3b80d8

bindings/python/llvm/tests/test_core.py

index 8123e15bad7b0eb53a70a67d2afa0abb5f86cf21..545abc826ea713efde0866414ffeabae628d0436 100644 (file)
@@ -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")
+