Module Name: src
Committed By: christos
Date: Sun Mar 25 18:50:19 UTC 2012
Modified Files:
src/tests/bin/sh: t_varquote.sh
Log Message:
PR/43597 was fixed
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/bin/sh/t_varquote.sh
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tests/bin/sh/t_varquote.sh
diff -u src/tests/bin/sh/t_varquote.sh:1.1 src/tests/bin/sh/t_varquote.sh:1.2
--- src/tests/bin/sh/t_varquote.sh:1.1 Sat Mar 17 12:33:11 2012
+++ src/tests/bin/sh/t_varquote.sh Sun Mar 25 14:50:19 2012
@@ -1,4 +1,4 @@
-# $NetBSD: t_varquote.sh,v 1.1 2012/03/17 16:33:11 jruoho Exp $
+# $NetBSD: t_varquote.sh,v 1.2 2012/03/25 18:50:19 christos Exp $
#
# Copyright (c) 2007 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -68,10 +68,9 @@ all_body() {
atf_test_case nested_quotes_multiword
nested_quotes_multiword_head() {
atf_set "descr" "Tests that having nested quoting in a multi-word" \
- "string works"
+ "string works (PR bin/43597)"
}
nested_quotes_multiword_body() {
- atf_expect_fail "PR bin/43597"
atf_check -s eq:0 -o match:"first-word second-word" -e empty \
/bin/sh -c 'echo "${foo:="first-word"} second-word"'
}