]> git.ipfire.org Git - thirdparty/git.git/blame - t/t3700-add.sh
Move --pretty options into Documentation/pretty-formats.txt
[thirdparty/git.git] / t / t3700-add.sh
CommitLineData
60ace879
CW
1#!/bin/sh
2#
3# Copyright (c) 2006 Carl D. Worth
4#
5
6test_description='Test of git-add, including the -- option.'
7
8. ./test-lib.sh
9
10test_expect_success \
11 'Test of git-add' \
12 'touch foo && git-add foo'
13
14test_expect_success \
15 'Post-check that foo is in the index' \
16 'git-ls-files foo | grep foo'
17
18test_expect_success \
19 'Test that "git-add -- -q" works' \
20 'touch -- -q && git-add -- -q'
21
fd28b34a
SP
22test_expect_success \
23 'git-add: Test that executable bit is not used if core.filemode=0' \
24 'git repo-config core.filemode 0 &&
25 echo foo >xfoo1 &&
26 chmod 755 xfoo1 &&
27 git-add xfoo1 &&
28 case "`git-ls-files --stage xfoo1`" in
29 100644" "*xfoo1) echo ok;;
30 *) echo fail; git-ls-files --stage xfoo1; exit 1;;
31 esac'
32
33test_expect_success \
34 'git-update-index --add: Test that executable bit is not used...' \
35 'git repo-config core.filemode 0 &&
36 echo foo >xfoo2 &&
37 chmod 755 xfoo2 &&
209e7569 38 git-update-index --add xfoo2 &&
fd28b34a
SP
39 case "`git-ls-files --stage xfoo2`" in
40 100644" "*xfoo2) echo ok;;
41 *) echo fail; git-ls-files --stage xfoo2; exit 1;;
42 esac'
43
60ace879 44test_done