Skip to content

Commit c9b7cc0

Browse files
committed
Merge branch 'jn/test-terminal-punt-on-osx-breakage' into maint
* jn/test-terminal-punt-on-osx-breakage: tests: skip terminal output tests on OS X
2 parents 8209b7f + 339e563 commit c9b7cc0

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

t/lib-terminal.sh

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,24 @@
11
#!/bin/sh
22

3-
test_expect_success 'set up terminal for tests' '
4-
if
5-
test_have_prereq PERL &&
3+
test_expect_success PERL 'set up terminal for tests' '
4+
# Reading from the pty master seems to get stuck _sometimes_
5+
# on Mac OS X 10.5.0, using Perl 5.10.0 or 5.8.9.
6+
#
7+
# Reproduction recipe: run
8+
#
9+
# i=0
10+
# while ./test-terminal.perl echo hi $i
11+
# do
12+
# : $((i = $i + 1))
13+
# done
14+
#
15+
# After 2000 iterations or so it hangs.
16+
# https://rt.cpan.org/Ticket/Display.html?id=65692
17+
#
18+
if test "$(uname -s)" = Darwin
19+
then
20+
:
21+
elif
622
"$PERL_PATH" "$TEST_DIRECTORY"/test-terminal.perl \
723
sh -c "test -t 1 && test -t 2"
824
then

0 commit comments

Comments
 (0)