Remove some old cfg(not(test)) attributes

This commit is contained in:
Philipp Oppermann
2019-04-25 17:55:35 +02:00
parent fad4618de3
commit fd8fb3e581
4 changed files with 0 additions and 6 deletions

View File

@@ -303,7 +303,6 @@ Now we can try to access some memory outside our kernel:
```rust
// in src/main.rs
#[cfg(not(test))]
#[no_mangle]
pub extern "C" fn _start() -> ! {
use blog_os::interrupts::PICS;
@@ -353,7 +352,6 @@ Let's try to take a look at the page tables that our kernel runs on:
```rust
// in src/main.rs
#[cfg(not(test))]
#[no_mangle]
pub extern "C" fn _start() -> ! {
[] // initialize GDT, IDT, PICS