summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtests/test_navigate_less_history_file8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/test_navigate_less_history_file b/tests/test_navigate_less_history_file
index 7ec5a95f..148ed2d5 100755
--- a/tests/test_navigate_less_history_file
+++ b/tests/test_navigate_less_history_file
@@ -28,7 +28,13 @@ test_delta_less_hist_file_created () {
DELTA_HIST_FILE="${XDG_DATA_HOME:-$HOME/.local/share}/delta/lesshst"
rm -f ~/.lesshst "$DELTA_HIST_FILE"
[ -e "$DELTA_HIST_FILE" ] && die "Expected \"$DELTA_HIST_FILE\" not to exist"
- git -c pager.log="$DELTA" log -p HEAD~2...HEAD
+ if [[ "$OSTYPE" = darwin* ]]; then
+ # Trick git and delta into invoking their pager child processes, despite
+ # output not being a tty.
+ script -q /dev/null git -c pager.log="$DELTA" log -p HEAD~2...HEAD > /dev/null
+ else
+ git -c pager.log="$DELTA" log -p HEAD~2...HEAD
+ fi
[ -e "$DELTA_HIST_FILE" ] || die "Expected \"$DELTA_HIST_FILE\" to exist"
}