File tree Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -142,10 +142,6 @@ fn main() {
142
142
) ;
143
143
}
144
144
Err ( e) => {
145
- // TODO: I think this is the right ordering. I don't think we
146
- // care about any reads until we are done with the parallel part,
147
- // though performance probably doesn't matter because each iter
148
- // takes ~minutes
149
145
any_fails. store ( true , Ordering :: Release ) ;
150
146
eprintln ! (
151
147
"Failed: {} - {} seconds - {:?}" ,
Original file line number Diff line number Diff line change @@ -7,13 +7,9 @@ use reqwest;
7
7
use std:: path:: PathBuf ;
8
8
9
9
static CRATES_ALL : & [ & str ] = & [ "bare-metal = \" 0.1.0\" " , "vcell = \" 0.1.0\" " ] ;
10
-
11
10
static CRATES_MSP430 : & [ & str ] = & [ "msp430 = \" 0.1.0\" " ] ;
12
-
13
11
static CRATES_CORTEX_M : & [ & str ] = & [ "cortex-m = \" 0.4.0\" " , "cortex-m-rt = \" 0.3.0\" " ] ;
14
-
15
12
static CRATES_RISCV : & [ & str ] = & [ "riscv = \" 0.1.4\" " , "riscv-rt = \" 0.1.3\" " ] ;
16
-
17
13
static PROFILE_ALL : & [ & str ] = & [ "[profile.dev]" , "incremental = false" ] ;
18
14
19
15
fn path_helper ( input : & [ & str ] ) -> PathBuf {
@@ -84,8 +80,6 @@ pub fn test(t: &TestCase, bin_path: &PathBuf) -> Result<()> {
84
80
85
81
// Create a new cargo project. It is necesary to set the user, otherwise
86
82
// cargo init will not work (when running in a container with no user set)
87
- // TODO: Will fail if directory already exists
88
-
89
83
Command :: new ( "cargo" )
90
84
. env ( "USER" , user)
91
85
. arg ( "init" )
@@ -99,7 +93,6 @@ pub fn test(t: &TestCase, bin_path: &PathBuf) -> Result<()> {
99
93
. capture_outputs ( true , "cargo init" , None , None ) ?;
100
94
101
95
// Add some crates to the Cargo.toml of our new project
102
- // TODO: Only add the right crates for this arch to make the compilation faster
103
96
let svd_toml = path_helper_base ( & chip_dir, & [ "Cargo.toml" ] ) ;
104
97
let mut file = OpenOptions :: new ( )
105
98
. write ( true )
You can’t perform that action at this time.
0 commit comments