diff options
author | Anders Waldenborg <anders@0x63.nu> | 2012-03-22 11:23:52 +0000 |
---|---|---|
committer | Anders Waldenborg <anders@0x63.nu> | 2012-03-22 11:23:52 +0000 |
commit | e3295cc5be7f7b2e3bb27e6bf94cd5c569f54876 (patch) | |
tree | 29e2a96a050861d071f97299729775626bc448dd /bindings/python | |
parent | 63bd926a41f476399cb62948484511261842489f (diff) |
[python] Add negative MemoryBuffer testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153248 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings/python')
-rw-r--r-- | bindings/python/llvm/tests/test_core.py | 5 |
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 8123e15bad..545abc826e 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") + |