diff --git a/src/tools/cargotest/main.rs b/src/tools/cargotest/main.rs index 26a2e96f57108..8c8e426604e11 100644 --- a/src/tools/cargotest/main.rs +++ b/src/tools/cargotest/main.rs @@ -21,19 +21,44 @@ struct Test { lock: Option<&'static str>, } -const TEST_REPOS: &'static [Test] = &[Test { - name: "cargo", - repo: "https://github.com/rust-lang/cargo", - sha: "b7be4f2ef2cf743492edc6dfb55d087ed88f2d76", - lock: None, - }, - Test { - name: "iron", - repo: "https://github.com/iron/iron", - sha: "16c858ec2901e2992fe5e529780f59fa8ed12903", - lock: Some(include_str!("lockfiles/iron-Cargo.lock")), - }]; - +const TEST_REPOS: &'static [Test] = &[ + Test { + name: "cargo", + repo: "https://github.com/rust-lang/cargo", + sha: "b7be4f2ef2cf743492edc6dfb55d087ed88f2d76", + lock: None, + }, + Test { + name: "iron", + repo: "https://github.com/iron/iron", + sha: "16c858ec2901e2992fe5e529780f59fa8ed12903", + lock: Some(include_str!("lockfiles/iron-Cargo.lock")), + }, + Test { + name: "ripgrep", + repo: "https://github.com/BurntSushi/ripgrep", + sha: "b65bb37b14655e1a89c7cd19c8b011ef3e312791", + lock: None, + }, + Test { + name: "tokei", + repo: "https://github.com/Aaronepower/tokei", + sha: "5e11c4852fe4aa086b0e4fe5885822fbe57ba928", + lock: None, + }, + Test { + name: "treeify", + repo: "https://github.com/dzamlo/treeify", + sha: "999001b223152441198f117a68fb81f57bc086dd", + lock: None, + }, + Test { + name: "xsv", + repo: "https://github.com/BurntSushi/xsv", + sha: "5ec4fff4a3f507eda887049469897f02c6fae036", + lock: None, + }, +]; fn main() { // One of the projects being tested here is Cargo, and when being tested