]> git.ipfire.org Git - thirdparty/git.git/blob - t/t3020-ls-files-error-unmatch.sh
Merge branch 'jw/remote-doc-typofix' into HEAD
[thirdparty/git.git] / t / t3020-ls-files-error-unmatch.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2006 Carl D. Worth
4 #
5
6 test_description='git ls-files test for --error-unmatch option
7
8 This test runs git ls-files --error-unmatch to ensure it correctly
9 returns an error when a non-existent path is provided on the command
10 line.
11 '
12
13 TEST_PASSES_SANITIZE_LEAK=true
14 . ./test-lib.sh
15
16 test_expect_success 'setup' '
17 touch foo bar &&
18 git update-index --add foo bar &&
19 git commit -m "add foo bar"
20 '
21
22 test_expect_success 'git ls-files --error-unmatch should fail with unmatched path.' '
23 test_must_fail git ls-files --error-unmatch foo bar-does-not-match
24 '
25
26 test_expect_success 'git ls-files --error-unmatch should succeed with matched paths.' '
27 git ls-files --error-unmatch foo bar
28 '
29
30 test_done