From ea8fd6f785cdb2d1d3e21c1d7e62aeceb78b1806 Mon Sep 17 00:00:00 2001 From: Zhang Junyang Date: Thu, 20 Feb 2025 09:20:14 +0800 Subject: [PATCH] Add a print in Makefile for the ktest target --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 1cb9cc627..30a38f5a9 100644 --- a/Makefile +++ b/Makefile @@ -249,6 +249,7 @@ ktest: initramfs $(CARGO_OSDK) @# Exclude linux-bzimage-setup from ktest since it's hard to be unit tested @for dir in $(OSDK_CRATES); do \ [ $$dir = "ostd/libs/linux-bzimage/setup" ] && continue; \ + echo "[make] Testing $$dir"; \ (cd $$dir && OVMF=off cargo osdk test $(CARGO_OSDK_INITRAMFS_OPTION)) || exit 1; \ tail --lines 10 qemu.log | grep -q "^\\[ktest runner\\] All crates tested." \ || (echo "Test failed" && exit 1); \