-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'jc/1.7.0-diff-whitespace-only-status'
* jc/1.7.0-diff-whitespace-only-status: diff.c: fix typoes in comments Make test case number unique diff: Rename QUIET internal option to QUICK diff: change semantics of "ignore whitespace" options Conflicts: diff.h
- Loading branch information
Showing
8 changed files
with
105 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
#!/bin/sh | ||
|
||
test_description='diff --exit-code with whitespace' | ||
. ./test-lib.sh | ||
|
||
test_expect_success setup ' | ||
mkdir a b && | ||
echo >c && | ||
echo >a/d && | ||
echo >b/e && | ||
git add . && | ||
test_tick && | ||
git commit -m initial && | ||
echo " " >a/d && | ||
test_tick && | ||
git commit -a -m second && | ||
echo " " >a/d && | ||
echo " " >b/e && | ||
git add a/d | ||
' | ||
|
||
test_expect_success 'diff-tree --exit-code' ' | ||
test_must_fail git diff --exit-code HEAD^ HEAD && | ||
test_must_fail git diff-tree --exit-code HEAD^ HEAD | ||
' | ||
|
||
test_expect_success 'diff-tree -b --exit-code' ' | ||
git diff -b --exit-code HEAD^ HEAD && | ||
git diff-tree -b -p --exit-code HEAD^ HEAD && | ||
git diff-tree -b --exit-code HEAD^ HEAD | ||
' | ||
|
||
test_expect_success 'diff-index --cached --exit-code' ' | ||
test_must_fail git diff --cached --exit-code HEAD && | ||
test_must_fail git diff-index --cached --exit-code HEAD | ||
' | ||
|
||
test_expect_success 'diff-index -b -p --cached --exit-code' ' | ||
git diff -b --cached --exit-code HEAD && | ||
git diff-index -b -p --cached --exit-code HEAD | ||
' | ||
|
||
test_expect_success 'diff-index --exit-code' ' | ||
test_must_fail git diff --exit-code HEAD && | ||
test_must_fail git diff-index --exit-code HEAD | ||
' | ||
|
||
test_expect_success 'diff-index -b -p --exit-code' ' | ||
git diff -b --exit-code HEAD && | ||
git diff-index -b -p --exit-code HEAD | ||
' | ||
|
||
test_expect_success 'diff-files --exit-code' ' | ||
test_must_fail git diff --exit-code && | ||
test_must_fail git diff-files --exit-code | ||
' | ||
|
||
test_expect_success 'diff-files -b -p --exit-code' ' | ||
git diff -b --exit-code && | ||
git diff-files -b -p --exit-code | ||
' | ||
|
||
test_done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters