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};
77
88const CRATES_ALL : & [ & str ] = & [ "critical-section = \" 1.0\" " , "vcell = \" 0.1.2\" " ] ;
99const 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 }" ] ;
1112const CRATES_CORTEX_M : & [ & str ] = & [ "cortex-m = \" 0.7.6\" " , "cortex-m-rt = \" 0.6.13\" " ] ;
1213const CRATES_RISCV : & [ & str ] = & [ "riscv = \" 0.9.0\" " , "riscv-rt = \" 0.9.0\" " ] ;
1314const CRATES_XTENSALX : & [ & str ] = & [ "xtensa-lx-rt = \" 0.9.0\" " , "xtensa-lx = \" 0.6.0\" " ] ;
@@ -137,10 +138,7 @@ pub fn test(
137138 XtensaLX => CRATES_XTENSALX . iter ( ) ,
138139 } )
139140 . chain ( if nightly {
140- match & t. arch {
141- Msp430 => CRATES_MSP430_NIGHTLY . iter ( ) ,
142- _ => [ ] . iter ( ) ,
143- }
141+ CRATES_NIGHTLY . iter ( )
144142 } else {
145143 [ ] . iter ( )
146144 } )
Original file line number Diff line number Diff line change @@ -4195,7 +4195,7 @@ pub const TESTS: &[&TestCase] = &[
41954195 mfgr : TexasInstruments ,
41964196 chip : "msp430fr2355" ,
41974197 svd_url : Some (
4198- "https://raw.githubusercontent.com/YuhanLiin/msp430fr2355/rt-up /msp430fr2355.svd" ,
4198+ "https://raw.githubusercontent.com/YuhanLiin/msp430fr2355/master /msp430fr2355.svd" ,
41994199 ) ,
42004200 should_pass : true ,
42014201 run_when : Always ,
You can’t perform that action at this time.
0 commit comments