summaryrefslogtreecommitdiff
path: root/tests/test-diff-ignore-whitespace.t
diff options
context:
space:
mode:
authorDaniel Silverstone <daniel.silverstone@codethink.co.uk>2012-09-27 14:30:31 +0100
committerDaniel Silverstone <daniel.silverstone@codethink.co.uk>2012-09-27 14:30:31 +0100
commit4b0aa73b8c69bd5b7521337809f7bc4714209a5a (patch)
tree75f4c36771caf222280249cd1ed611d5ade8bd48 /tests/test-diff-ignore-whitespace.t
parent59a96880b5d035db83067acda8345497c75d7716 (diff)
parent921ced43c48c1d170452a7b251b94cc96ec8dd44 (diff)
downloadmercurial-tarball-4b0aa73b8c69bd5b7521337809f7bc4714209a5a.tar.gz
Merge remote-tracking branch 'origin/master' into baserock/morphbaserock/morph
This changes us to 1.9.3 which might stand a better chance of being usable by Lorry. We also undo the setup.py change because python now supports bz2
Diffstat (limited to 'tests/test-diff-ignore-whitespace.t')
-rw-r--r--tests/test-diff-ignore-whitespace.t56
1 files changed, 0 insertions, 56 deletions
diff --git a/tests/test-diff-ignore-whitespace.t b/tests/test-diff-ignore-whitespace.t
index 35ca98d..ac5764a 100644
--- a/tests/test-diff-ignore-whitespace.t
+++ b/tests/test-diff-ignore-whitespace.t
@@ -442,59 +442,3 @@ Only new line noticed:
New line not noticed when space change ignored:
$ hg ndiff --ignore-blank-lines --ignore-all-space
-
-Do not ignore all newlines, only blank lines
-
- $ printf 'hello \nworld\ngoodbye world\n' > foo
- $ hg ndiff --ignore-blank-lines
- diff -r 540c40a65b78 foo
- --- a/foo
- +++ b/foo
- @@ -1,2 +1,3 @@
- -hello world
- +hello
- +world
- goodbye world
-
-Test hunk offsets adjustments with --ignore-blank-lines
-
- $ hg revert -aC
- reverting foo
- $ printf '\nb\nx\nd\n' > a
- $ printf 'b\ny\nd\n' > b
- $ hg add a b
- $ hg ci -m add
- $ hg cat -r . a > b
- $ hg cat -r . b > a
- $ hg diff -B --nodates a > ../diffa
- $ cat ../diffa
- diff -r 0e66aa54f318 a
- --- a/a
- +++ b/a
- @@ -1,4 +1,4 @@
-
- b
- -x
- +y
- d
- $ hg diff -B --nodates b > ../diffb
- $ cat ../diffb
- diff -r 0e66aa54f318 b
- --- a/b
- +++ b/b
- @@ -1,3 +1,3 @@
- b
- -y
- +x
- d
- $ hg revert -aC
- reverting a
- reverting b
- $ hg import --no-commit ../diffa
- applying ../diffa
- $ hg revert -aC
- reverting a
- $ hg import --no-commit ../diffb
- applying ../diffb
- $ hg revert -aC
- reverting b