You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rustpkg calls extra::tempfile::mkdtemp (mostly in rustpkg/tests but also in rustpkg::{package_source,version}) and doesn't ever remove the resulting directories.
/tmp grows by 8MiB every time I run make check, we should fix it before I run out of disk space and have to reboot! ;)
The text was updated successfully, but these errors were encountered:
I was looking into fixing this myself (eg. like this) but I decided I want to see if there's interest in changing mkdtemp to return an RAII wrapper so I don't have to do the RAII in rustpkg code (#9763). But I also don't want to forget about this!
rustpkg calls
extra::tempfile::mkdtemp
(mostly inrustpkg/tests
but also inrustpkg::{package_source,version}
) and doesn't ever remove the resulting directories./tmp
grows by 8MiB every time I runmake check
, we should fix it before I run out of disk space and have to reboot! ;)The text was updated successfully, but these errors were encountered: