-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: factor out terminal handling from t7006
Other tests besides the pager ones may want to check how we handle output to a terminal. This patch makes the code reusable. Signed-off-by: Jeff King <peff@peff.net> Reviewed-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
- Loading branch information
Jeff King
authored and
Junio C Hamano
committed
Oct 18, 2010
1 parent
c752e7f
commit cc4e48f
Showing
3 changed files
with
29 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/bin/sh | ||
|
||
test_expect_success 'set up terminal for tests' ' | ||
if test -t 1 | ||
then | ||
>stdout_is_tty | ||
elif | ||
test_have_prereq PERL && | ||
"$PERL_PATH" "$TEST_DIRECTORY"/test-terminal.perl \ | ||
sh -c "test -t 1" | ||
then | ||
>test_terminal_works | ||
fi | ||
' | ||
|
||
if test -e stdout_is_tty | ||
then | ||
test_terminal() { "$@"; } | ||
test_set_prereq TTY | ||
elif test -e test_terminal_works | ||
then | ||
test_terminal() { | ||
"$PERL_PATH" "$TEST_DIRECTORY"/test-terminal.perl "$@" | ||
} | ||
test_set_prereq TTY | ||
else | ||
say "# no usable terminal, so skipping some tests" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.