diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2025-06-17 14:45:21 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2025-06-17 14:45:23 +0200 |
commit | 91d8f6963b3b94c40a62ed69b37350a4f4644fff (patch) | |
tree | 6ba0576b5f2d6cda813c5d0cf65776e7309acd99 | |
parent | 8a82dfaf598d48ee9788e71963c0f378004d38e5 (diff) |
tests: Fix make clean
It was dropping the .c file when building inside the source tree
-rw-r--r-- | tests/user-qemu.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/user-qemu.mk b/tests/user-qemu.mk index c658ca21..8a25bc41 100644 --- a/tests/user-qemu.mk +++ b/tests/user-qemu.mk @@ -201,7 +201,7 @@ tests/test-%: tests/test-%.iso $(srcdir)/tests/run-qemu.sh.template chmod +x $@ clean-test-%: - rm -f tests/test-$*.iso tests/module-$* tests/test-$** + rm -f tests/test-$* tests/test-$*.iso tests/test-$*.log tests/test-$*.raw tests/test-$*.trs tests/module-$* USER_TESTS := \ |