* [PATCH] t1400-update-ref: set VISUAL=true as well as EDITOR=true
@ 2006-07-11 8:41 Eric Wong
2006-07-11 9:15 ` Junio C Hamano
0 siblings, 1 reply; 3+ messages in thread
From: Eric Wong @ 2006-07-11 8:41 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git, Eric Wong
I have VISUAL set in my environment, and it caused git-commit to
spawn my editor during the test.
Signed-off-by: Eric Wong <normalperson@yhbt.net>
---
t/t1400-update-ref.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/t/t1400-update-ref.sh b/t/t1400-update-ref.sh
index 6a3515d..4f5b6bd 100755
--- a/t/t1400-update-ref.sh
+++ b/t/t1400-update-ref.sh
@@ -190,7 +190,7 @@ test_expect_success \
GIT_COMMITTER_DATE="2005-05-26 23:41" git-commit -F M -a &&
h_OTHER=$(git-rev-parse --verify HEAD) &&
echo FIXED >F &&
- EDITOR=true \
+ EDITOR=true VISUAL=true \
GIT_AUTHOR_DATE="2005-05-26 23:44" \
GIT_COMMITTER_DATE="2005-05-26 23:44" git-commit --amend &&
h_FIXED=$(git-rev-parse --verify HEAD) &&
--
1.4.1.g710d
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] t1400-update-ref: set VISUAL=true as well as EDITOR=true
2006-07-11 8:41 [PATCH] t1400-update-ref: set VISUAL=true as well as EDITOR=true Eric Wong
@ 2006-07-11 9:15 ` Junio C Hamano
2006-07-11 19:01 ` [PATCH] tests: Set EDITOR=: and VISUAL=: globally Eric Wong
0 siblings, 1 reply; 3+ messages in thread
From: Junio C Hamano @ 2006-07-11 9:15 UTC (permalink / raw)
To: Eric Wong; +Cc: git
Eric Wong <normalperson@yhbt.net> writes:
> I have VISUAL set in my environment, and it caused git-commit to
> spawn my editor during the test.
I think it would be better to remove "EDITOR=: VISUAL=:"
settings from annotate-tests.sh, t1400-update-ref.sh and
t4013-diff-various.sh, and move that to test-lib.sh; there is no
point overriding them differently in each of these automated
tests.
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] tests: Set EDITOR=: and VISUAL=: globally
2006-07-11 9:15 ` Junio C Hamano
@ 2006-07-11 19:01 ` Eric Wong
0 siblings, 0 replies; 3+ messages in thread
From: Eric Wong @ 2006-07-11 19:01 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git
This way we don't have to remember to set it for each test; and
if we forget, we won't cause interactive editors to be spawned
for non-interactive tests.
Signed-off-by: Eric Wong <normalperson@yhbt.net>
---
Junio C Hamano <junkio@cox.net> wrote:
> Eric Wong <normalperson@yhbt.net> writes:
>
> > I have VISUAL set in my environment, and it caused git-commit to
> > spawn my editor during the test.
>
> I think it would be better to remove "EDITOR=: VISUAL=:"
> settings from annotate-tests.sh, t1400-update-ref.sh and
> t4013-diff-various.sh, and move that to test-lib.sh; there is no
> point overriding them differently in each of these automated
> tests.
I've been under the impression this has already been set, but it turns
it that was only the case in my config.mak on a different machine :)
t/annotate-tests.sh | 2 +-
t/t1400-update-ref.sh | 1 -
t/t4013-diff-various.sh | 2 +-
t/test-lib.sh | 3 +++
4 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/t/annotate-tests.sh b/t/annotate-tests.sh
index 1148b02..b6a2edd 100644
--- a/t/annotate-tests.sh
+++ b/t/annotate-tests.sh
@@ -94,7 +94,7 @@ test_expect_success \
test_expect_success \
'merge-setup part 4' \
'echo "evil merge." >>file &&
- EDITOR=: VISUAL=: git commit -a --amend'
+ git commit -a --amend'
test_expect_success \
'Two lines blamed on A, one on B, two on B1, one on B2, one on A U Thor' \
diff --git a/t/t1400-update-ref.sh b/t/t1400-update-ref.sh
index 6a3515d..04fab26 100755
--- a/t/t1400-update-ref.sh
+++ b/t/t1400-update-ref.sh
@@ -190,7 +190,6 @@ test_expect_success \
GIT_COMMITTER_DATE="2005-05-26 23:41" git-commit -F M -a &&
h_OTHER=$(git-rev-parse --verify HEAD) &&
echo FIXED >F &&
- EDITOR=true \
GIT_AUTHOR_DATE="2005-05-26 23:44" \
GIT_COMMITTER_DATE="2005-05-26 23:44" git-commit --amend &&
h_FIXED=$(git-rev-parse --verify HEAD) &&
diff --git a/t/t4013-diff-various.sh b/t/t4013-diff-various.sh
index 06837d1..36658fb 100755
--- a/t/t4013-diff-various.sh
+++ b/t/t4013-diff-various.sh
@@ -70,7 +70,7 @@ test_expect_success setup '
for i in 1 2; do echo $i; done >>dir/sub &&
git update-index file0 dir/sub &&
- EDITOR=: VISUAL=: git commit --amend &&
+ git commit --amend &&
git show-branch
'
diff --git a/t/test-lib.sh b/t/test-lib.sh
index 05f6e79..b0d7990 100755
--- a/t/test-lib.sh
+++ b/t/test-lib.sh
@@ -9,6 +9,8 @@ LC_ALL=C
PAGER=cat
TZ=UTC
export LANG LC_ALL PAGER TZ
+EDITOR=:
+VISUAL=:
unset AUTHOR_DATE
unset AUTHOR_EMAIL
unset AUTHOR_NAME
@@ -30,6 +32,7 @@ unset SHA1_FILE_DIRECTORIES
unset SHA1_FILE_DIRECTORY
export GIT_AUTHOR_EMAIL GIT_AUTHOR_NAME
export GIT_COMMITTER_EMAIL GIT_COMMITTER_NAME
+export EDITOR VISUAL
# Each test should start with something like this, after copyright notices:
#
--
1.4.1.g710d
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2006-07-11 19:02 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-11 8:41 [PATCH] t1400-update-ref: set VISUAL=true as well as EDITOR=true Eric Wong
2006-07-11 9:15 ` Junio C Hamano
2006-07-11 19:01 ` [PATCH] tests: Set EDITOR=: and VISUAL=: globally Eric Wong
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).