File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,8 @@ use std::process::{Command, Output};
7
7
8
8
const CRATES_ALL : & [ & str ] = & [ "critical-section = \" 1.0\" " , "vcell = \" 0.1.2\" " ] ;
9
9
const CRATES_MSP430 : & [ & str ] = & [ "msp430 = \" 0.4.0\" " , "msp430-rt = \" 0.4.0\" " ] ;
10
- const CRATES_MSP430_NIGHTLY : & [ & str ] = & [ "portable-atomic = \" 0.3.15\" " ] ;
10
+ const CRATES_NIGHTLY : & [ & str ] =
11
+ & [ "portable-atomic = { version = \" 0.3.15\" , default-features = false }" ] ;
11
12
const CRATES_CORTEX_M : & [ & str ] = & [ "cortex-m = \" 0.7.6\" " , "cortex-m-rt = \" 0.6.13\" " ] ;
12
13
const CRATES_RISCV : & [ & str ] = & [ "riscv = \" 0.9.0\" " , "riscv-rt = \" 0.9.0\" " ] ;
13
14
const CRATES_XTENSALX : & [ & str ] = & [ "xtensa-lx-rt = \" 0.9.0\" " , "xtensa-lx = \" 0.6.0\" " ] ;
@@ -137,10 +138,7 @@ pub fn test(
137
138
XtensaLX => CRATES_XTENSALX . iter ( ) ,
138
139
} )
139
140
. chain ( if nightly {
140
- match & t. arch {
141
- Msp430 => CRATES_MSP430_NIGHTLY . iter ( ) ,
142
- _ => [ ] . iter ( ) ,
143
- }
141
+ CRATES_NIGHTLY . iter ( )
144
142
} else {
145
143
[ ] . iter ( )
146
144
} )
Original file line number Diff line number Diff line change @@ -4195,7 +4195,7 @@ pub const TESTS: &[&TestCase] = &[
4195
4195
mfgr : TexasInstruments ,
4196
4196
chip : "msp430fr2355" ,
4197
4197
svd_url : Some (
4198
- "https://raw.githubusercontent.com/YuhanLiin/msp430fr2355/rt-up /msp430fr2355.svd" ,
4198
+ "https://raw.githubusercontent.com/YuhanLiin/msp430fr2355/master /msp430fr2355.svd" ,
4199
4199
) ,
4200
4200
should_pass : true ,
4201
4201
run_when : Always ,
You can’t perform that action at this time.
0 commit comments