Remove test case that tries to allocate impossible amounts
authorJason Molenda <jason@molenda.com>
Thu, 9 Feb 2023 18:43:13 +0000 (10:43 -0800)
committerJason Molenda <jason@molenda.com>
Thu, 9 Feb 2023 18:44:40 +0000 (10:44 -0800)
commit49470f1eacca6aa5ab0f860347aa282a79323161
treeadcc0deb307bba7b22b50c7e1ab2a8d18275273b
parent84728a3d75496ff3f48436f968a01ba2c05ee37e
Remove test case that tries to allocate impossible amounts

The sanitizer bots are failing with this test; they
impose a maximum 0x10000000000 size on allocations, and
malloc on darwin will let me malloc that much.  The
alternative to keep this would be to break it out into a
seperate test in TestProcessAIP and skip that if it's on
the sanitizer, but this is seeming too fragile IMO so I'm
punting it entirely.
lldb/test/API/python_api/process/TestProcessAPI.py