Fix panic_handler test by fixing line number

This commit is contained in:
Philipp Oppermann
2019-04-25 18:18:39 +02:00
parent 8374aa6ab6
commit ad99afae98

View File

@@ -9,7 +9,7 @@ use core::{
};
const MESSAGE: &str = "Example panic message from panic_handler test";
const PANIC_LINE: u32 = 14; // adjust this when moving the `panic!` call
const PANIC_LINE: u32 = 17; // adjust this when moving the `panic!` call
#[no_mangle]
pub extern "C" fn _start() -> ! {