summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Sunshine <sunshine@sunshineco.com>2013-09-14 00:47:12 -0400
committerJunio C Hamano <gitster@pobox.com>2013-09-17 10:17:33 -0700
commit2e582df0e0f1589054674c8ed3391f240a37a6df (patch)
treebec41a8424c51b9d5443ee45449cdb041fc4dbb0
parent2f0f7f1ce7431a6484506c8c89d5d4648e6aefd4 (diff)
downloadgit-mm/status-without-comment-char.tar.gz
t7508: avoid non-portable sed expressionmm/status-without-comment-char
2556b996 (status: disable display of '#' comment prefix by default; 2013-09-06) introduced tests which fail on Mac OS X due to unportable use of \t (for TAB) in a sed expression. POSIX [1][2] also disallows it. Fix this. [1]: http://pubs.opengroup.org/onlinepubs/9699919799/utilities/sed.html#tag_20_116_13_02 [2]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap09.html#tag_09_03_02 Signed-off-by: Eric Sunshine <sunshine@sunshineco.com> Acked-by: Matthieu Moy <Matthieu.Moy@imag.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-xt/t7508-status.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/t7508-status.sh b/t/t7508-status.sh
index 9bf97017c0..d8c531da76 100755
--- a/t/t7508-status.sh
+++ b/t/t7508-status.sh
@@ -61,7 +61,8 @@ test_expect_success 'status (1)' '
'
strip_comments () {
- sed "s/^\# //; s/^\#$//; s/^#\t/\t/" <"$1" >"$1".tmp &&
+ tab=' '
+ sed "s/^\# //; s/^\#$//; s/^#$tab/$tab/" <"$1" >"$1".tmp &&
rm "$1" && mv "$1".tmp "$1"
}