Skip to content
This repository has been archived by the owner on Jan 24, 2022. It is now read-only.

Commit

Permalink
Add a test that enables ALL the warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-schievink committed Jan 26, 2020
1 parent 0b2704b commit b25b619
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ compiletest_rs = "0.4.0"
name = "device"
required-features = ["device"]

[[example]]
name = "warnings"
required-features = ["device"]

[[test]]
name = "compiletest"
required-features = ["device"]
Expand Down
50 changes: 50 additions & 0 deletions examples/warnings.rs
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() {}

0 comments on commit b25b619

Please sign in to comment.