소스 검색

tests: Followup to last: echo(1) is evil.

Use 'print -r --' instead, so literal backslashes in $BUFFER aren't expanded.

Found-by: Matthew Martin
pull/309/head
Daniel Shahaf 8 년 전
부모
커밋
f0bae44b76
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      tests/test-highlighting.zsh

+ 2
- 2
tests/test-highlighting.zsh 파일 보기

@ -114,11 +114,11 @@ run_test_internal() {
[[ -n "$highlight_zone[4]" ]] && todo=" # TODO $highlight_zone[4]"
for j in {$start..$end}; do
if [[ "$observed_result[$j]" != "$highlight_zone[3]" ]]; then
echo "not ok $i - $desc - expected ${(qqq)highlight_zone[3]}, observed ${(qqq)observed_result[$j]}.$todo"
print -r -- "not ok $i - $desc - expected ${(qqq)highlight_zone[3]}, observed ${(qqq)observed_result[$j]}.$todo"
continue 2
fi
done
echo "ok $i - $desc${todo:+' - '}$todo"
print -r -- "ok $i - $desc${todo:+' - '}$todo"
unset desc
unset start end
unset todo

불러오는 중...
취소
저장