summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2011-11-20 18:35:27 +0100
committerJim Meyering <meyering@redhat.com>2011-11-20 18:35:27 +0100
commit4cfdc71cc57ccf501e1ec97483576636615ce784 (patch)
tree615724ecfe30ff30a1996566e7ef8df9436b6f36
parent1de1d040273d4eae059ad6cd0feb696f86743b5f (diff)
downloadgrep-4cfdc71cc57ccf501e1ec97483576636615ce784.tar.gz
tests: fix typo in last change
* tests/word-delim-multibyte: Use double quotes around $e_acute, not single quotes. Spotted by Bruno Haible. This and the preceding change do not resolve the XPASS failure on OpenBSD 4.9 after all. See the explanation at http://thread.gmane.org/gmane.comp.gnu.grep.bugs/4022
-rwxr-xr-xtests/word-delim-multibyte2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/word-delim-multibyte b/tests/word-delim-multibyte
index a6411aff..e0fa2661 100755
--- a/tests/word-delim-multibyte
+++ b/tests/word-delim-multibyte
@@ -11,7 +11,7 @@ LC_ALL=en_US.UTF-8
export LC_ALL
fail=0
-grep '\<$e_acute' in > out 2>err || fail=1
+grep "\<$e_acute" in > out 2>err || fail=1
compare out in || fail=1
compare err /dev/null || fail=1