]> git.lizzy.rs Git - rust.git/commit
Auto merge of #32972 - alexcrichton:cargotest, r=brson
authorbors <bors@rust-lang.org>
Fri, 15 Apr 2016 17:32:10 +0000 (10:32 -0700)
committerbors <bors@rust-lang.org>
Fri, 15 Apr 2016 17:32:10 +0000 (10:32 -0700)
commitccc7e95a964ece830caf66ad537e89ae6fb397a6
tree0275ba3acb450d7691a7eb236848b63e0dde2dba
parent5d5f4b5e3fcd377400bcc2140621cff6fd73a617
parent73c2d2a7419844f763b1ac72b89236bd3183bfaf
Auto merge of #32972 - alexcrichton:cargotest, r=brson

cargotest: Put output in build directory

Right now cargotest uses `TempDir` to place output into the system temp
directory, but unfortunately this means that if the process is interrupted then
it'll leak the directory and that'll never get cleaned up. One of our bots
filled up its disk space and there were 20 cargotest directories lying around so
seems prudent to clean them up!

By putting the output in the build directory it should ensure that we don't leak
too many extra builds.