This repository has been archived by the owner on Jan 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
242: Backport lint fixes and test to 0.6.x r=adamgreig a=jonas-schievink Closes #240 Co-authored-by: Emil Fresk <[email protected]> Co-authored-by: Jonas Schievink <[email protected]>
- Loading branch information
Showing
7 changed files
with
76 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
//! Tests that a crate can still build with all warnings enabled. | ||
//! | ||
//! The code generated by the `cortex-m-rt` macros might need to manually | ||
//! `#[allow]` some of them (even though Rust does that by default for a few | ||
//! warnings too). | ||
|
||
#![no_std] | ||
#![no_main] | ||
#![deny(warnings, missing_docs, rust_2018_idioms)] | ||
|
||
extern crate cortex_m_rt; | ||
extern crate panic_halt; | ||
|
||
use cortex_m_rt::{entry, exception, interrupt, pre_init, ExceptionFrame}; | ||
|
||
#[allow(non_camel_case_types)] | ||
enum interrupt { | ||
INT, | ||
} | ||
|
||
extern "C" { | ||
fn INT(); | ||
} | ||
|
||
union Vector { | ||
#[allow(dead_code)] | ||
handler: unsafe extern "C" fn(), | ||
} | ||
|
||
#[link_section = ".vector_table.interrupts"] | ||
#[no_mangle] | ||
#[used] | ||
static __INTERRUPTS: [Vector; 1] = [Vector { handler: INT }]; | ||
|
||
/// Dummy interrupt. | ||
#[interrupt] | ||
fn INT() {} | ||
|
||
#[exception] | ||
fn HardFault(_eh: &ExceptionFrame) -> ! { | ||
loop {} | ||
} | ||
|
||
#[entry] | ||
fn main() -> ! { | ||
loop {} | ||
} | ||
|
||
#[pre_init] | ||
unsafe fn pre_init() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters