about summary refs log tree commit diff
path: root/src/tools/cargotest/Cargo.toml
AgeCommit message (Collapse)AuthorLines
2021-09-20Migrate to 2021Mark Rousskov-1/+1
2021-07-29rfc3052: Remove authors field from Cargo manifestsJade-1/+0
Since RFC 3052 soft deprecated the authors field anyway, hiding it from crates.io, docs.rs, and making Cargo not add it by default, and it is not generally up to date/useful information, we should remove it from crates in this repo.
2019-02-03Use 2018 edition for cargotestHirokazu Hata-0/+1
2017-03-01Add Cargo as a submoduleAlex Crichton-1/+1
2016-04-15cargotest: Put output in build directoryAlex Crichton-3/+0
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.
2016-03-22Introduce 'cargotest' and the check-cargotest buildstepBrian Anderson-0/+11
This is a new suite of tests that verifies that the compiler builds specific revisions of select crates from crates.io. It does not run by default. It is intended that buildbot runs these tests against all PRs, and gate on them.