jorisvandenbossche commented on PR #38472: URL: https://github.com/apache/arrow/pull/38472#issuecomment-1835602469
> * [AMD64 Ubuntu 22.04 C++ ASAN UBSAN](https://github.com/apache/arrow/actions/runs/7050402985/job/19191028912?pr=38472#step:6:3004) is failing due to a memory leak in the dlpack test with (not sure what is going on but am playing around with thest to see if I can fix it): I assume this is because we don't yet have a consumer, and in those C++ tests you are exporting the array without consuming it. In that case you will have to call the deleter explicitly (in the python tests, by consuming it by numpy, it's numpy that will ensure to call the deleter when the numpy array goes out of scope) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
