1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 02:33:06 +01:00

[python] Add negative MemoryBuffer testcase

llvm-svn: 153248
This commit is contained in:
Anders Waldenborg 2012-03-22 11:23:52 +00:00
parent a2a674effc
commit 25b56d6bad

View 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")