X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=t%2Ft7300-clean.sh;h=a50492f7c065d034cb344eac965d51a82cb5a599;hb=53b22a9e45161004ff3260782abc4ee2a5b3e730;hp=afccfc9973ba864167387b1e1caf6fe8b12f68f9;hpb=2a2ad0c0007b9f79768b4564644ac9eaaa7310b6;p=git.git diff --git a/t/t7300-clean.sh b/t/t7300-clean.sh index afccfc997..a50492f7c 100755 --- a/t/t7300-clean.sh +++ b/t/t7300-clean.sh @@ -75,8 +75,8 @@ test_expect_success 'git-clean src/ src/' ' test_expect_success 'git-clean with prefix' ' - mkdir -p build docs && - touch a.out src/part3.c docs/manual.txt obj.o build/lib.so && + mkdir -p build docs src/test && + touch a.out src/part3.c docs/manual.txt obj.o build/lib.so src/test/1.c && (cd src/ && git-clean) && test -f Makefile && test -f README && @@ -84,6 +84,7 @@ test_expect_success 'git-clean with prefix' ' test -f src/part2.c && test -f a.out && test ! -f src/part3.c && + test -f src/test/1.c && test -f docs/manual.txt && test -f obj.o && test -f build/lib.so