Replace bootimage with local builder executable

This commit is contained in:
Philipp Oppermann
2020-08-23 18:35:08 +02:00
parent a3d58588a2
commit fe23af5b3e
10 changed files with 361 additions and 17 deletions

View File

@@ -4,7 +4,6 @@
#![test_runner(blog_os::test_runner)]
#![reexport_test_harness_main = "test_main"]
use blog_os::println;
use core::panic::PanicInfo;
#[no_mangle] // don't mangle the name of this function
@@ -21,5 +20,5 @@ fn panic(info: &PanicInfo) -> ! {
#[test_case]
fn test_println() {
println!("test_println output");
//println!("test_println output");
}