Skip to content

Commit

Permalink
Merge branch 'km/avoid-bs-in-shell-glob' into maint
Browse files Browse the repository at this point in the history
Some tests used shell constructs that did not work well on FreeBSD

* km/avoid-bs-in-shell-glob:
  test: fix t5560 on FreeBSD
  • Loading branch information
Junio C Hamano committed May 8, 2014
2 parents 73edc54 + ff7a1c6 commit 16fefdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/t5560-http-backend-noserver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ test_have_prereq GREP_STRIPS_CR && export GREP_OPTIONS=-U

run_backend() {
echo "$2" |
QUERY_STRING="${1#*\?}" \
PATH_TRANSLATED="$HTTPD_DOCUMENT_ROOT_PATH/${1%%\?*}" \
QUERY_STRING="${1#*[?]}" \
PATH_TRANSLATED="$HTTPD_DOCUMENT_ROOT_PATH/${1%%[?]*}" \
git http-backend >act.out 2>act.err
}

Expand Down

0 comments on commit 16fefdc

Please sign in to comment.