From: Elijah Newren <newren@gmail.com>
To: git@vger.kernel.org
Cc: Elijah Newren <newren@gmail.com>
Subject: [RFC PATCH 1/2] t6022: New test checking for unnecessary updates of renamed+modified files
Date: Sat, 26 Feb 2011 11:34:56 -0700 [thread overview]
Message-ID: <1298745297-25713-2-git-send-email-newren@gmail.com> (raw)
In-Reply-To: <1298745297-25713-1-git-send-email-newren@gmail.com>
Signed-off-by: Elijah Newren <newren@gmail.com>
---
t/t6022-merge-rename.sh | 32 ++++++++++++++++++++++++++++++++
1 files changed, 32 insertions(+), 0 deletions(-)
diff --git a/t/t6022-merge-rename.sh b/t/t6022-merge-rename.sh
index 1ed259d..71bfd22 100755
--- a/t/t6022-merge-rename.sh
+++ b/t/t6022-merge-rename.sh
@@ -609,4 +609,36 @@ test_expect_success 'check handling of differently renamed file with D/F conflic
! test -f original
'
+test_expect_success 'setup avoid unnecessary update' '
+ git reset --hard &&
+ git checkout --orphan avoid-unnecessary-update &&
+ git rm -rf . &&
+ git clean -fdqx &&
+
+ printf "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n" >original &&
+ git add -A &&
+ git commit -m "Common commmit" &&
+
+ git mv original rename &&
+ echo 11 >>rename &&
+ git add -u &&
+ git commit -m "Renamed and modified" &&
+
+ git checkout -b other-branch HEAD~1 &&
+ echo "random content" >random-file &&
+ git add -A &&
+ git commit -m "Random, unrelated changes"
+'
+
+test_expect_failure 'avoid unnecessary update' '
+ git checkout -q avoid-unnecessary-update^0 &&
+ orig=$(stat --format="%Y" rename) &&
+ sleep 1 &&
+ git merge other-branch &&
+ new=$(stat --format="%Y" rename) &&
+ echo "Checking whether stat times are same: $orig vs $new" &&
+ test "$orig" == "$new" &&
+ git diff-files --exit-code # Is "rename" clean, or only racily clean?
+'
+
test_done
--
1.7.4.1.23.g4865dd
next prev parent reply other threads:[~2011-02-26 18:35 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-02-24 3:33 new behaviour in git merge Stephen Rothwell
2011-02-24 8:15 ` Jeff King
2011-02-24 9:24 ` Stephen Rothwell
2011-02-24 11:52 ` Jeff King
2011-02-26 18:34 ` [RFC PATCH 0/2] Fix unnecessary updates of files during merge Elijah Newren
2011-02-26 18:34 ` Elijah Newren [this message]
2011-02-26 18:34 ` [RFC PATCH 2/2] merge-recursive: When we detect we can skip an update, actually skip it Elijah Newren
2011-02-26 18:43 ` [RFC PATCH 0/2] Fix unnecessary updates of files during merge Elijah Newren
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1298745297-25713-2-git-send-email-newren@gmail.com \
--to=newren@gmail.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).