X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=t%2Ft7300-clean.sh;h=dfd118878fd37c096ccd426aa01fa2ac36581367;hb=7fec10b7f41fa32e71aa6377bd04cd7c6fb419e0;hp=f013c176ed910d278cbb886004429869f288ebc7;hpb=65c6a4696a760f518c9f262705de030323c11146;p=git.git diff --git a/t/t7300-clean.sh b/t/t7300-clean.sh index f013c176e..dfd118878 100755 --- a/t/t7300-clean.sh +++ b/t/t7300-clean.sh @@ -126,6 +126,20 @@ test_expect_success 'git-clean symbolic link' ' ' +test_expect_success 'git-clean with wildcard' ' + + touch a.clean b.clean other.c && + git-clean "*.clean" && + test -f Makefile && + test -f README && + test -f src/part1.c && + test -f src/part2.c && + test ! -f a.clean && + test ! -f b.clean && + test -f other.c + +' + test_expect_success 'git-clean -n' ' mkdir -p build docs &&