git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Fix regression tests on Cygwin
@ 2006-10-23 19:34 Lars Hjemli
  2006-10-24 14:53 ` Johannes Schindelin
  0 siblings, 1 reply; 5+ messages in thread
From: Lars Hjemli @ 2006-10-23 19:34 UTC (permalink / raw)
  To: git

On Cygwin, "make test" failes due to missing ".exe" a couple of places.

This fixes it, in a somewhat ugly way....

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
---
 t/t0000-basic.sh |    9 ++++++++-
 t/test-lib.sh    |   10 +++++++++-
 2 files changed, 17 insertions(+), 2 deletions(-)

diff --git a/t/t0000-basic.sh b/t/t0000-basic.sh
index 2c9bbb5..41d53be 100755
--- a/t/t0000-basic.sh
+++ b/t/t0000-basic.sh
@@ -25,7 +25,14 @@ # or have too old python without subproc
 # out before running any tests.  Also catch the bogosity of trying
 # to run tests without building while we are at it.
 
-../git >/dev/null
+X=
+uname=$(uname -o)
+if test "$uname" = "Cygwin"
+then
+	X=".exe"
+fi
+
+../git$X >/dev/null
 if test $? != 1
 then
 	echo >&2 'You do not seem to have built git yet.'
diff --git a/t/test-lib.sh b/t/test-lib.sh
index 2488e6e..8a64f6e 100755
--- a/t/test-lib.sh
+++ b/t/test-lib.sh
@@ -43,6 +43,14 @@ case $(echo $GIT_TRACE |tr "[A-Z]" "[a-z
 		;;
 esac
 
+X=
+uname=$(uname -o)
+if test "$uname" = "Cygwin"
+then
+	X=".exe"
+fi
+
+
 # Each test should start with something like this, after copyright notices:
 #
 # test_description='Description of this test...
@@ -175,7 +183,7 @@ test_create_repo () {
 	repo="$1"
 	mkdir "$repo"
 	cd "$repo" || error "Cannot setup test environment"
-	"$GIT_EXEC_PATH/git" init-db --template=$GIT_EXEC_PATH/templates/blt/ 2>/dev/null ||
+	"$GIT_EXEC_PATH/git$X" init-db --template=$GIT_EXEC_PATH/templates/blt/ 2>/dev/null ||
 	error "cannot run git init-db -- have you built things yet?"
 	mv .git/hooks .git/hooks-disabled
 	cd "$owd"
-- 
1.4.3.1.g1688

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] Fix regression tests on Cygwin
  2006-10-23 19:34 [PATCH] Fix regression tests on Cygwin Lars Hjemli
@ 2006-10-24 14:53 ` Johannes Schindelin
  2006-10-25  4:40   ` Junio C Hamano
  0 siblings, 1 reply; 5+ messages in thread
From: Johannes Schindelin @ 2006-10-24 14:53 UTC (permalink / raw)
  To: Lars Hjemli; +Cc: git

Hi,

On Mon, 23 Oct 2006, Lars Hjemli wrote:

> On Cygwin, "make test" failes due to missing ".exe" a couple of places.

Last time I made "test" on cygwin, it did not complain. "../git" works 
perfectly here.

Ciao,
Dscho

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] Fix regression tests on Cygwin
  2006-10-24 14:53 ` Johannes Schindelin
@ 2006-10-25  4:40   ` Junio C Hamano
  2006-10-25  4:50     ` Junio C Hamano
  0 siblings, 1 reply; 5+ messages in thread
From: Junio C Hamano @ 2006-10-25  4:40 UTC (permalink / raw)
  To: Lars Hjemli; +Cc: git, Johannes Schindelin

Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:

> On Mon, 23 Oct 2006, Lars Hjemli wrote:
>
>> On Cygwin, "make test" failes due to missing ".exe" a couple of places.
>
> Last time I made "test" on cygwin, it did not complain.

Same here (W2k, fairly up-to-date git, installed on local NTFS
disk).


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] Fix regression tests on Cygwin
  2006-10-25  4:40   ` Junio C Hamano
@ 2006-10-25  4:50     ` Junio C Hamano
  2006-10-25  6:39       ` Lars Hjemli
  0 siblings, 1 reply; 5+ messages in thread
From: Junio C Hamano @ 2006-10-25  4:50 UTC (permalink / raw)
  To: Lars Hjemli; +Cc: git, Johannes Schindelin

Junio C Hamano <junkio@cox.net> writes:

> Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:
>
>> On Mon, 23 Oct 2006, Lars Hjemli wrote:
>>
>>> On Cygwin, "make test" failes due to missing ".exe" a couple of places.
>>
>> Last time I made "test" on cygwin, it did not complain.
>
> Same here (W2k, fairly up-to-date git, installed on local NTFS
> disk).

... and more importantly, with fairly up-to-date Cygwin.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] Fix regression tests on Cygwin
  2006-10-25  4:50     ` Junio C Hamano
@ 2006-10-25  6:39       ` Lars Hjemli
  0 siblings, 0 replies; 5+ messages in thread
From: Lars Hjemli @ 2006-10-25  6:39 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git, Johannes Schindelin

On 10/25/06, Junio C Hamano <junkio@cox.net> wrote:
> Junio C Hamano <junkio@cox.net> writes:
>
> > Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:
> >
> >> On Mon, 23 Oct 2006, Lars Hjemli wrote:
> >>
> >>> On Cygwin, "make test" failes due to missing ".exe" a couple of places.
> >>
> >> Last time I made "test" on cygwin, it did not complain.
> >
> > Same here (W2k, fairly up-to-date git, installed on local NTFS
> > disk).

Well, then it's probably my cygwin-environment that is broken (make
test used to work for me too...)

Sorry for the noise

--

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2006-10-25  6:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-23 19:34 [PATCH] Fix regression tests on Cygwin Lars Hjemli
2006-10-24 14:53 ` Johannes Schindelin
2006-10-25  4:40   ` Junio C Hamano
2006-10-25  4:50     ` Junio C Hamano
2006-10-25  6:39       ` Lars Hjemli

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).