From: Jonathan Nieder <hidden> Date: 2016-06-15 22:45:00
t6030-bisect-porcelain.sh relies on "ls" exiting with nonzero
status when asked to list nonexistent files. Unfortunately,
/bin/ls on Mac OS X 10.3 exits with exit code 0. So use "echo
<shell glob pattern>" and grep instead.
Signed-off-by: Jonathan Nieder <redacted>
---
With this change, all the non-git-svn tests pass on my machine.
I think the fix is portable but I do not have the experience to
be sure. So I would be happier if someone looks it over.
t/t6030-bisect-porcelain.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
@@ -76,7 +76,7 @@ test_expect_success 'bisect fails if given any junk instead of revs' 'test_must_failgitbisectstartfoo$HASH1--&&test_must_failgitbisectstart$HASH4$HASH1bar--&&test-z"$(gitfor-each-ref"refs/bisect/*")"&&-test_must_faills.git/BISECT_*&&+echo.git/BISECT_*|test_must_failgrepBISECT_[^*]&&gitbisectstart&&test_must_failgitbisectgoodfoo$HASH1&&test_must_failgitbisectgood$HASH1bar&&
From: Christian Couder <hidden> Date: 2016-06-15 22:45:00
Le jeudi 24 juillet 2008, Jonathan Nieder a écrit :
quoted hunk
t6030-bisect-porcelain.sh relies on "ls" exiting with nonzero
status when asked to list nonexistent files. Unfortunately,
/bin/ls on Mac OS X 10.3 exits with exit code 0. So use "echo
<shell glob pattern>" and grep instead.
Signed-off-by: Jonathan Nieder <redacted>
---
With this change, all the non-git-svn tests pass on my machine.
I think the fix is portable but I do not have the experience to
be sure. So I would be happier if someone looks it over.
t/t6030-bisect-porcelain.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
From: Mike Hommey <hidden> Date: 2016-06-15 22:45:00
On Thu, Jul 24, 2008 at 07:57:26AM +0200, Christian Couder wrote:
Le jeudi 24 juillet 2008, Jonathan Nieder a écrit :
quoted
t6030-bisect-porcelain.sh relies on "ls" exiting with nonzero
status when asked to list nonexistent files. Unfortunately,
/bin/ls on Mac OS X 10.3 exits with exit code 0. So use "echo
<shell glob pattern>" and grep instead.
Signed-off-by: Jonathan Nieder <redacted>
---
With this change, all the non-git-svn tests pass on my machine.
I think the fix is portable but I do not have the experience to
be sure. So I would be happier if someone looks it over.
t/t6030-bisect-porcelain.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
From: Jonathan Nieder <hidden> Date: 2016-06-15 22:45:00
t6030-bisect-porcelain.sh relies on "ls" exiting with nonzero
status when asked to list nonexistent files. Unfortunately,
/bin/ls on Mac OS X 10.3 exits with exit code 0. So look at
its output instead.
Signed-off-by: Jonathan Nieder <redacted>
---
Mike Hommey wrote:
On Thu, Jul 24, 2008 at 07:57:26AM +0200, Christian Couder wrote:
quoted
Le jeudi 24 juillet 2008, Jonathan Nieder a écrit :
Perhaps the following is simpler:
+ test -z "$(ls .git/BISECT_*)" &&
That is still a useless use of ls ;)
It is much better than what I wrote, at least.
Good night (well, good morning I guess), and thanks.
t/t6030-bisect-porcelain.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
@@ -76,7 +76,7 @@ test_expect_success 'bisect fails if given any junk instead of revs' 'test_must_failgitbisectstartfoo$HASH1--&&test_must_failgitbisectstart$HASH4$HASH1bar--&&test-z"$(gitfor-each-ref"refs/bisect/*")"&&-test_must_faills.git/BISECT_*&&+test-z"$(ls.git/BISECT_*2>/dev/null)"&&gitbisectstart&&test_must_failgitbisectgoodfoo$HASH1&&test_must_failgitbisectgood$HASH1bar&&
From: Mike Hommey <hidden> Date: 2016-06-15 22:45:00
On Thu, Jul 24, 2008 at 02:43:51AM -0500, Jonathan Nieder wrote:
t6030-bisect-porcelain.sh relies on "ls" exiting with nonzero
status when asked to list nonexistent files. Unfortunately,
/bin/ls on Mac OS X 10.3 exits with exit code 0. So look at
its output instead.
Signed-off-by: Jonathan Nieder <redacted>
---
Mike Hommey wrote:
quoted
On Thu, Jul 24, 2008 at 07:57:26AM +0200, Christian Couder wrote:
quoted
Le jeudi 24 juillet 2008, Jonathan Nieder a �crit :
From: Johannes Schindelin <hidden> Date: 2016-06-15 22:45:00
Hi,
On Thu, 24 Jul 2008, Mike Hommey wrote:
On Thu, Jul 24, 2008 at 02:43:51AM -0500, Jonathan Nieder wrote:
quoted
Mike Hommey wrote:
quoted
On Thu, Jul 24, 2008 at 07:57:26AM +0200, Christian Couder wrote:
quoted
+ test -z "$(ls .git/BISECT_*)" &&
That is still a useless use of ls ;)
It is much better than what I wrote, at least.
But could also be written with echo instead of ls.
Sure, but then it looks uglier:
test ".git/BISECT_*" = "$(echo .git/BISECT_*)" &&
and it is much easier to hide a typo there.
And now the big question: is it performance critical? Or is obvious
correctness the highest goal here?
Hth,
Dscho
From: Jonathan Nieder <hidden> Date: 2016-06-15 22:45:00
t6030-bisect-porcelain.sh relies on "ls" exiting with nonzero
status when asked to list nonexistent files. Unfortunately,
/bin/ls on Mac OS X 10.3 exits with exit code 0. So use "echo"
instead.
Signed-off-by: Jonathan Nieder <redacted>
---
Mike Hommey wrote:
>>>> + test -z "$(ls .git/BISECT_*)" &&
>>> That is still a useless use of ls ;)
>> It is much better than what I wrote, at least.
> But could also be written with echo instead of ls.
How about this? (The echo is necessary because the argument
to a case statement does not undergo filename expansion.)
t/t6030-bisect-porcelain.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
@@ -76,7 +76,7 @@ test_expect_success 'bisect fails if given any junk instead of revs' 'test_must_failgitbisectstartfoo$HASH1--&&test_must_failgitbisectstart$HASH4$HASH1bar--&&test-z"$(gitfor-each-ref"refs/bisect/*")"&&-test_must_faills.git/BISECT_*&&+case$(echo.git/BISECT_*)in*\*);;*)false;;esac&&gitbisectstart&&test_must_failgitbisectgoodfoo$HASH1&&test_must_failgitbisectgood$HASH1bar&&
From: Jonathan Nieder <hidden> Date: 2016-06-15 22:45:00
Jonathan Nieder wrote:
- test_must_fail ls .git/BISECT_* &&
+ case $(echo .git/BISECT_*) in *\*) ;; *) false ;; esac &&
Actually, if we want to go that route, I prefer the version Dscho gave.
So please ignore my patch v3; I'd rather people choose between
Christian's and Dscho's suggestions.
Personally, without knowing how much time avoiding the ls saves, I
am not sure which is best. Certainly the version with "ls" is clearer,
which is most important; but if the time savings (of avoiding such
constructs generally) are significant, then that is very much worthwhile
- a faster test suite can be run more often.
Jonathan
From: Christian Couder <hidden> Date: 2016-06-15 22:45:03
Le jeudi 24 juillet 2008, Jonathan Nieder a écrit :
t6030-bisect-porcelain.sh relies on "ls" exiting with nonzero
status when asked to list nonexistent files. Unfortunately,
/bin/ls on Mac OS X 10.3 exits with exit code 0. So look at
its output instead.
Signed-off-by: Jonathan Nieder <redacted>
Acked-by: Christian Couder <redacted>
Thanks,
Christian.
quoted hunk
---
Mike Hommey wrote:
quoted
On Thu, Jul 24, 2008 at 07:57:26AM +0200, Christian Couder wrote:
quoted
Le jeudi 24 juillet 2008, Jonathan Nieder a écrit :
Perhaps the following is simpler:
+ test -z "$(ls .git/BISECT_*)" &&
That is still a useless use of ls ;)
It is much better than what I wrote, at least.
Good night (well, good morning I guess), and thanks.
t/t6030-bisect-porcelain.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
From: Christian Couder <hidden> Date: 2016-06-15 22:45:03
Le dimanche 27 juillet 2008, Christian Couder a écrit :
Le jeudi 24 juillet 2008, Jonathan Nieder a écrit :
quoted
t6030-bisect-porcelain.sh relies on "ls" exiting with nonzero
status when asked to list nonexistent files. Unfortunately,
/bin/ls on Mac OS X 10.3 exits with exit code 0. So look at
its output instead.
Signed-off-by: Jonathan Nieder <redacted>
Acked-by: Christian Couder <redacted>
It seems that there is a problem with the message itself though. When I "git
am" it, I get:
fatal: cannot convert from x-unknown to utf-8
It seems that it is mime encoded or something and my git
(1.6.0.rc0.80.gf54f0) doesn't like it.
Regards,
Christian.
From: Jonathan Nieder <hidden> Date: 2016-06-15 22:45:03
t6030-bisect-porcelain.sh relies on "ls" exiting with nonzero
status when asked to list nonexistent files. Unfortunately,
/bin/ls on Mac OS X 10.3 exits with exit code 0. So look at
its output instead.
Signed-off-by: Jonathan Nieder <redacted>
Acked-by: Christian Couder <redacted>
---
On Sun, 27 Jul 2008, Christian Couder wrote:
It seems that there is a problem with the message itself though. When I "git
am" it, I get:
fatal: cannot convert from x-unknown to utf-8
Hmm, not sure what happened. Maybe resending it will work...
t/t6030-bisect-porcelain.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
@@ -76,7 +76,7 @@ test_expect_success 'bisect fails if given any junk instead of revs' 'test_must_failgitbisectstartfoo$HASH1--&&test_must_failgitbisectstart$HASH4$HASH1bar--&&test-z"$(gitfor-each-ref"refs/bisect/*")"&&-test_must_faills.git/BISECT_*&&+test-z"$(ls.git/BISECT_*2>/dev/null)"&&gitbisectstart&&test_must_failgitbisectgoodfoo$HASH1&&test_must_failgitbisectgood$HASH1bar&&
From: Christian Couder <hidden> Date: 2016-06-15 22:45:03
Le dimanche 27 juillet 2008, Jonathan Nieder a écrit :
t6030-bisect-porcelain.sh relies on "ls" exiting with nonzero
status when asked to list nonexistent files. Unfortunately,
/bin/ls on Mac OS X 10.3 exits with exit code 0. So look at
its output instead.
Signed-off-by: Jonathan Nieder <redacted>
Acked-by: Christian Couder <redacted>
---
On Sun, 27 Jul 2008, Christian Couder wrote:
quoted
It seems that there is a problem with the message itself though. When I
"git am" it, I get:
fatal: cannot convert from x-unknown to utf-8
Hmm, not sure what happened. Maybe resending it will work...