@@ -22,6 +22,12 @@ struct Test {
22
22
}
23
23
24
24
const TEST_REPOS : & ' static [ Test ] = & [ Test {
25
+ name : "bins" ,
26
+ repo : "https://github.com/jkcclemens/bins" ,
27
+ sha : "378da8f7d78df6e3ff0b234063de50619b16648e" ,
28
+ lock : None ,
29
+ } ,
30
+ Test {
25
31
name : "cargo" ,
26
32
repo : "https://github.com/rust-lang/cargo" ,
27
33
sha : "b7be4f2ef2cf743492edc6dfb55d087ed88f2d76" ,
@@ -32,9 +38,32 @@ const TEST_REPOS: &'static [Test] = &[Test {
32
38
repo : "https://github.com/iron/iron" ,
33
39
sha : "16c858ec2901e2992fe5e529780f59fa8ed12903" ,
34
40
lock : Some ( include_str ! ( "lockfiles/iron-Cargo.lock" ) ) ,
41
+ } ,
42
+ Test {
43
+ name : "ripgrep" ,
44
+ repo : "https://github.com/BurntSushi/ripgrep" ,
45
+ sha : "5487dffefaa34e5fc04321335aa716f415082977" ,
46
+ lock : None ,
47
+ } ,
48
+ Test {
49
+ name : "tokei" ,
50
+ repo : "https://github.com/Aaronepower/tokei" ,
51
+ sha : "9faa8d4210ba19ad76d736e46e4963cfcef329d6" ,
52
+ lock : None ,
53
+ } ,
54
+ Test {
55
+ name : "treeify" ,
56
+ repo : "https://github.com/dzamlo/treeify" ,
57
+ sha : "999001b223152441198f117a68fb81f57bc086dd" ,
58
+ lock : None ,
59
+ } ,
60
+ Test {
61
+ name : "xsv" ,
62
+ repo : "https://github.com/BurntSushi/xsv" ,
63
+ sha : "5ec4fff4a3f507eda887049469897f02c6fae036" ,
64
+ lock : None ,
35
65
} ] ;
36
66
37
-
38
67
fn main ( ) {
39
68
// One of the projects being tested here is Cargo, and when being tested
40
69
// Cargo will at some point call `nmake.exe` on Windows MSVC. Unfortunately
0 commit comments