Add a print in Makefile for the ktest target

This commit is contained in:
Zhang Junyang 2025-02-20 09:20:14 +08:00 committed by Tate, Hongliang Tian
parent 17c8da7459
commit ea8fd6f785
1 changed files with 1 additions and 0 deletions

View File

@ -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); \