2005-10-02 17:33:38 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2005 Junio C Hamano
|
|
|
|
#
|
|
|
|
|
2007-07-03 07:52:14 +02:00
|
|
|
test_description='git ls-files test (-- to terminate the path list).
|
2005-10-02 17:33:38 +02:00
|
|
|
|
2007-07-03 07:52:14 +02:00
|
|
|
This test runs git ls-files --others with the following on the
|
2005-10-02 17:33:38 +02:00
|
|
|
filesystem.
|
|
|
|
|
|
|
|
path0 - a file
|
|
|
|
-foo - a file with a funny name.
|
|
|
|
-- - another file with a funny name.
|
|
|
|
'
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
setup \
|
|
|
|
'echo frotz >path0 &&
|
|
|
|
echo frotz >./-foo &&
|
|
|
|
echo frotz >./--'
|
|
|
|
|
|
|
|
test_expect_success \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git ls-files without path restriction.' \
|
|
|
|
'git ls-files --others >output &&
|
2008-05-24 07:28:56 +02:00
|
|
|
test_cmp output - <<EOF
|
2005-10-02 17:33:38 +02:00
|
|
|
--
|
|
|
|
-foo
|
|
|
|
output
|
|
|
|
path0
|
|
|
|
EOF
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git ls-files with path restriction.' \
|
|
|
|
'git ls-files --others path0 >output &&
|
2008-05-24 07:28:56 +02:00
|
|
|
test_cmp output - <<EOF
|
2005-10-02 17:33:38 +02:00
|
|
|
path0
|
|
|
|
EOF
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git ls-files with path restriction with --.' \
|
|
|
|
'git ls-files --others -- path0 >output &&
|
2008-05-24 07:28:56 +02:00
|
|
|
test_cmp output - <<EOF
|
2005-10-02 17:33:38 +02:00
|
|
|
path0
|
|
|
|
EOF
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git ls-files with path restriction with -- --.' \
|
|
|
|
'git ls-files --others -- -- >output &&
|
2008-05-24 07:28:56 +02:00
|
|
|
test_cmp output - <<EOF
|
2005-10-02 17:33:38 +02:00
|
|
|
--
|
|
|
|
EOF
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git ls-files with no path restriction.' \
|
|
|
|
'git ls-files --others -- >output &&
|
2008-05-24 07:28:56 +02:00
|
|
|
test_cmp output - <<EOF
|
2005-10-02 17:33:38 +02:00
|
|
|
--
|
|
|
|
-foo
|
|
|
|
output
|
|
|
|
path0
|
|
|
|
EOF
|
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|