Compare commits

...

4 Commits

Author SHA1 Message Date
Philipp Oppermann
c9cdf562f2 Merge branch 'post-11' into post-12 2023-04-29 12:27:15 +02:00
Philipp Oppermann
f5b5251092 Merge branch 'post-10' into post-11 2023-04-29 12:27:12 +02:00
Philipp Oppermann
92f197c2e5 Merge pull request #1216 from phil-opp/remove-alloc-error-handler
The `#[alloc_error_handler]` attribute was removed
2023-04-29 12:20:26 +02:00
Philipp Oppermann
af909cab1e The #[alloc_error_handler] attribute was removed
Allocation errors now always panic.
2023-04-29 12:13:06 +02:00

View File

@@ -2,7 +2,6 @@
#![cfg_attr(test, no_main)]
#![feature(custom_test_frameworks)]
#![feature(abi_x86_interrupt)]
#![feature(alloc_error_handler)]
#![feature(const_mut_refs)]
#![test_runner(crate::test_runner)]
#![reexport_test_harness_main = "test_main"]
@@ -95,8 +94,3 @@ fn test_kernel_main(_boot_info: &'static BootInfo) -> ! {
fn panic(info: &PanicInfo) -> ! {
test_panic_handler(info)
}
#[alloc_error_handler]
fn alloc_error_handler(layout: alloc::alloc::Layout) -> ! {
panic!("allocation error: {:?}", layout)
}