From 3340babf51c9619263a57532ac55335cab7f13f4 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Tue, 26 Aug 2025 16:21:28 +0200 Subject: [PATCH] Set `test=true` to enable `main.rs` testing again We set `test=false` for previous posts in https://github.com/phil-opp/blog_os/pull/1412 to avoid errors e.g. in rust-analyzer. For this testing post, we want to set it back to `true`. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 473aed1d..15343a71 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ features = ["spin_no_std"] [[bin]] name = "blog_os" -test = false +test = true bench = false