test: fix clean target paths for libcriu, rpc, and crit

The clean target referenced libcriu, rpc, and crit directories
directly, but these are located under others/. This caused
"make -C test clean" to fail with "No such file or directory"
when reaching the sub-make calls.

Fix the paths to others/libcriu, others/rpc, and others/crit.

Assisted-by: Claude Code (claude-opus-4-6):claude-opus-4-6@default
Signed-off-by: Adrian Reber <areber@redhat.com>
This commit is contained in:
Adrian Reber 2026-06-11 20:42:14 +00:00 committed by Radostin Stoyanov
parent ecc91dbd1f
commit 00d38702d8

View file

@ -56,7 +56,7 @@ clean: clean_root
$(Q) $(RM) *.log
$(Q) $(RM) -r ./dump/
$(Q) $(MAKE) -C zdtm cleandep clean cleanout
$(Q) $(MAKE) -C libcriu clean
$(Q) $(MAKE) -C rpc clean
$(Q) $(MAKE) -C crit clean
$(Q) $(MAKE) -C others/libcriu clean
$(Q) $(MAKE) -C others/rpc clean
$(Q) $(MAKE) -C others/crit clean
.PHONY: clean