make: only rm symlink tests
avoid deleting own tests
This commit is contained in:
parent
91ae737be3
commit
00d653e12d
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -102,7 +102,7 @@ afl_tmin:
|
||||||
clean:
|
clean:
|
||||||
cargo clean
|
cargo clean
|
||||||
git submodule deinit -f --all
|
git submodule deinit -f --all
|
||||||
rm -f tests/suite/*.test
|
find tests -type l -path 'tests/suite/*.test' -print0 | xargs -0 rm -f
|
||||||
(cd tests/suite && make clean)
|
(cd tests/suite && make clean)
|
||||||
rm -f tests/bench/*.dj
|
rm -f tests/bench/*.dj
|
||||||
(cd tests/bench && make clean)
|
(cd tests/bench && make clean)
|
||||||
|
|
Loading…
Reference in a new issue