X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=t%2Ft3001-ls-files-others-exclude.sh;h=5beaaa33752daceb216ec7dec50727b9bd03682c;hb=0493a3fd5204a36bc961a8611770ddb9ec1ed8ed;hp=4b9380fa09aa91f0869fc3c2867bf7b22db20542;hpb=89ab859e9452cbc8f1f15afab52257e9b789c899;p=git.git diff --git a/t/t3001-ls-files-others-exclude.sh b/t/t3001-ls-files-others-exclude.sh index 4b9380fa..5beaaa33 100755 --- a/t/t3001-ls-files-others-exclude.sh +++ b/t/t3001-ls-files-others-exclude.sh @@ -14,7 +14,7 @@ rm -fr one three for dir in . one one/two three do mkdir -p $dir && - for i in 1 2 3 4 5 + for i in 1 2 3 4 5 6 7 8 do >$dir/a.$i done @@ -24,32 +24,47 @@ cat >expect <.git/ignore +*.7 +!*.8' >.git/ignore echo '*.1 -/*.3' >.gitignore +/*.3 +!*.6' >.gitignore echo '*.2 -two/*.4' >one/.gitignore +two/*.4 +!*.7 +*.8' >one/.gitignore +echo '!*.2 +!*.8' >one/two/.gitignore test_expect_success \ - 'git-ls-files --others --exclude.' \ + 'git-ls-files --others with various exclude options.' \ 'git-ls-files --others \ + --exclude=\*.6 \ --exclude-per-directory=.gitignore \ --exclude-from=.git/ignore \ >output && diff -u expect output' + +test_done