summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnders Waldenborg <anders@0x63.nu>2012-03-22 11:23:52 +0000
committerAnders Waldenborg <anders@0x63.nu>2012-03-22 11:23:52 +0000
commite3295cc5be7f7b2e3bb27e6bf94cd5c569f54876 (patch)
tree29e2a96a050861d071f97299729775626bc448dd
parent63bd926a41f476399cb62948484511261842489f (diff)
[python] Add negative MemoryBuffer testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153248 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--bindings/python/llvm/tests/test_core.py5
1 files changed, 5 insertions, 0 deletions
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")
+