git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] allow TTY tests to run under recent Mac OS
@ 2014-11-13 22:01 Mike Blume
  2014-11-13 22:21 ` Junio C Hamano
  2014-11-14  5:24 ` Torsten Bögershausen
  0 siblings, 2 replies; 4+ messages in thread
From: Mike Blume @ 2014-11-13 22:01 UTC (permalink / raw)
  To: git; +Cc: Mike Blume

listed bug doesn't reproduce on Mac OS Yosemite. For now, just enable
TTY on Yosemite and higher

Signed-off-by: Mike Blume <blume.mike@gmail.com>
---
 t/lib-terminal.sh | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/t/lib-terminal.sh b/t/lib-terminal.sh
index 5184549..1311ce0 100644
--- a/t/lib-terminal.sh
+++ b/t/lib-terminal.sh
@@ -29,7 +29,10 @@ test_lazy_prereq TTY '
 	# After 2000 iterations or so it hangs.
 	# https://rt.cpan.org/Ticket/Display.html?id=65692
 	#
-	test "$(uname -s)" != Darwin &&
+	# Under Mac OS X 10.10.1 and Perl 5.18.2, this problem
+	# appears to be gone.
+	#
+	[[ test "$(uname -s)" != Darwin || test "$(uname -r | cut -d. -f1") -ge 14 ]] &&
 
 	perl "$TEST_DIRECTORY"/test-terminal.perl \
 		sh -c "test -t 1 && test -t 2"
-- 
2.2.0.rc1.197.g60bf093

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

* Re: [PATCH] allow TTY tests to run under recent Mac OS
  2014-11-13 22:01 [PATCH] allow TTY tests to run under recent Mac OS Mike Blume
@ 2014-11-13 22:21 ` Junio C Hamano
  2014-11-13 22:40   ` Michael Blume
  2014-11-14  5:24 ` Torsten Bögershausen
  1 sibling, 1 reply; 4+ messages in thread
From: Junio C Hamano @ 2014-11-13 22:21 UTC (permalink / raw)
  To: Mike Blume; +Cc: git

Mike Blume <blume.mike@gmail.com> writes:

> listed bug doesn't reproduce on Mac OS Yosemite. For now, just enable
> TTY on Yosemite and higher
>
> Signed-off-by: Mike Blume <blume.mike@gmail.com>
> ---
>  t/lib-terminal.sh | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/t/lib-terminal.sh b/t/lib-terminal.sh
> index 5184549..1311ce0 100644
> --- a/t/lib-terminal.sh
> +++ b/t/lib-terminal.sh
> @@ -29,7 +29,10 @@ test_lazy_prereq TTY '
>  	# After 2000 iterations or so it hangs.
>  	# https://rt.cpan.org/Ticket/Display.html?id=65692
>  	#
> -	test "$(uname -s)" != Darwin &&
> +	# Under Mac OS X 10.10.1 and Perl 5.18.2, this problem
> +	# appears to be gone.
> +	#
> +	[[ test "$(uname -s)" != Darwin || test "$(uname -r | cut -d. -f1") -ge 14 ]] &&

This is designed to be a plain vanilla POSIX shell script.  Please
avoid these double brackets.

>  
>  	perl "$TEST_DIRECTORY"/test-terminal.perl \
>  		sh -c "test -t 1 && test -t 2"

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

* Re: [PATCH] allow TTY tests to run under recent Mac OS
  2014-11-13 22:21 ` Junio C Hamano
@ 2014-11-13 22:40   ` Michael Blume
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Blume @ 2014-11-13 22:40 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Git List

ah, sorry, didn't realize those were bash-only

On Thu, Nov 13, 2014 at 2:21 PM, Junio C Hamano <gitster@pobox.com> wrote:
> Mike Blume <blume.mike@gmail.com> writes:
>
>> listed bug doesn't reproduce on Mac OS Yosemite. For now, just enable
>> TTY on Yosemite and higher
>>
>> Signed-off-by: Mike Blume <blume.mike@gmail.com>
>> ---
>>  t/lib-terminal.sh | 5 ++++-
>>  1 file changed, 4 insertions(+), 1 deletion(-)
>>
>> diff --git a/t/lib-terminal.sh b/t/lib-terminal.sh
>> index 5184549..1311ce0 100644
>> --- a/t/lib-terminal.sh
>> +++ b/t/lib-terminal.sh
>> @@ -29,7 +29,10 @@ test_lazy_prereq TTY '
>>       # After 2000 iterations or so it hangs.
>>       # https://rt.cpan.org/Ticket/Display.html?id=65692
>>       #
>> -     test "$(uname -s)" != Darwin &&
>> +     # Under Mac OS X 10.10.1 and Perl 5.18.2, this problem
>> +     # appears to be gone.
>> +     #
>> +     [[ test "$(uname -s)" != Darwin || test "$(uname -r | cut -d. -f1") -ge 14 ]] &&
>
> This is designed to be a plain vanilla POSIX shell script.  Please
> avoid these double brackets.
>
>>
>>       perl "$TEST_DIRECTORY"/test-terminal.perl \
>>               sh -c "test -t 1 && test -t 2"

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

* Re: [PATCH] allow TTY tests to run under recent Mac OS
  2014-11-13 22:01 [PATCH] allow TTY tests to run under recent Mac OS Mike Blume
  2014-11-13 22:21 ` Junio C Hamano
@ 2014-11-14  5:24 ` Torsten Bögershausen
  1 sibling, 0 replies; 4+ messages in thread
From: Torsten Bögershausen @ 2014-11-14  5:24 UTC (permalink / raw)
  To: Mike Blume, git

On 11/13/2014 11:01 PM, Mike Blume wrote:
> listed bug doesn't reproduce on Mac OS Yosemite. For now, just enable
> TTY on Yosemite and higher
>
> Signed-off-by: Mike Blume <blume.mike@gmail.com>
> ---
>   t/lib-terminal.sh | 5 ++++-
>   1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/t/lib-terminal.sh b/t/lib-terminal.sh
> index 5184549..1311ce0 100644
> --- a/t/lib-terminal.sh
> +++ b/t/lib-terminal.sh
> @@ -29,7 +29,10 @@ test_lazy_prereq TTY '
>   	# After 2000 iterations or so it hangs.
>   	# https://rt.cpan.org/Ticket/Display.html?id=65692
>   	#
> -	test "$(uname -s)" != Darwin &&
> +	# Under Mac OS X 10.10.1 and Perl 5.18.2, this problem
> +	# appears to be gone.
> +	#
> +	[[ test "$(uname -s)" != Darwin || test "$(uname -r | cut -d. -f1") -ge 14 ]] &&
This seems to be bash syntax (the "[[" can (and should) be easily avoided)

Another question:
Is this related to perl or Mac OS ?
The commit message is indicating that the combination of Mac OS 10.10.1 
and perl 5.18.2
is working, but the code does not reflect this.
Does it make sense to test for the perl version in the code?
Or is it OK to mention

  Under Mac OS X 10.10.1 which ships with Perl 5.18.2, this problem....



>   
>   	perl "$TEST_DIRECTORY"/test-terminal.perl \
>   		sh -c "test -t 1 && test -t 2"

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

end of thread, other threads:[~2014-11-14  5:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-13 22:01 [PATCH] allow TTY tests to run under recent Mac OS Mike Blume
2014-11-13 22:21 ` Junio C Hamano
2014-11-13 22:40   ` Michael Blume
2014-11-14  5:24 ` Torsten Bögershausen

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