about summary refs log tree commit diff
path: root/src/tools/cargotest
AgeCommit message (Collapse)AuthorLines
2016-12-18Update commit hash in cargotestSeo Sanghyeon-1/+1
2016-10-29Update cargo sha for cargotestVadim Petrochenkov-1/+1
2016-10-14Add AppVeyor configuration to the repoAlex Crichton-0/+14
We hope to move to AppVeyor in the near future off of Buildbot + EC2. This adds an `appveyor.yml` configuration file which is ready to run builds on the auto branch. This is also accompanied with a few minor fixes to the build system and such to accomodate AppVeyor. The intention is that we're not switching over to AppVeyor entirely just yet, but rather we'll watch the builds for a week or so. If everything checks out then we'll start gating on AppVeyor instead of Buildbot!
2016-10-07Use workspaces and switch to a single Cargo.lock.Ahmed Charles-4/+0
This involves hacking the code used to run cargo test on various packages, because it reads Cargo.lock to determine which packages should be tested. This change implements a blacklist, since that will catch new crates when they are added in the future.
2016-10-06rustc: Rename rustc_macro to proc_macroAlex Crichton-1/+1
This commit blanket renames the `rustc_macro` infrastructure to `proc_macro`, which reflects the general consensus of #35900. A follow up PR to Cargo will be required to purge the `rustc-macro` name as well.
2016-10-03std: Stabilize and deprecate APIs for 1.13Alex Crichton-1/+1
This commit is intended to be backported to the 1.13 branch, and works with the following APIs: Stabilized * `i32::checked_abs` * `i32::wrapping_abs` * `i32::overflowing_abs` * `RefCell::try_borrow` * `RefCell::try_borrow_mut` * `DefaultHasher` * `DefaultHasher::new` * `DefaultHasher::default` Deprecated * `BinaryHeap::push_pop` * `BinaryHeap::replace` * `SipHash13` * `SipHash24` * `SipHasher` - use `DefaultHasher` instead in the `std::collections::hash_map` module Closes #28147 Closes #34767 Closes #35057 Closes #35070
2016-08-09Update cargo SHA to latest cargoJonathan Turner-1/+1
2016-08-05Update `cargo_test` hash.Jeffrey Seyfried-1/+1
2016-06-11run rustfmt on cargotest folder in src/tools/cargotestSrinivas Reddy Thatiparthy-38/+38
2016-06-02Update cargo version in cargotestWangshan Lu-1/+1
2016-05-04Update commit hash in cargotestSeo Sanghyeon-1/+1
2016-04-15cargotest: Put output in build directoryAlex Crichton-68/+67
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-04-07Fix cargotestBrian Anderson-1/+1
2016-03-22Introduce 'cargotest' and the check-cargotest buildstepBrian Anderson-0/+505
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.