diff options
Diffstat (limited to 'posix/wordexp-test.c')
-rw-r--r-- | posix/wordexp-test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/posix/wordexp-test.c b/posix/wordexp-test.c index 1797a7a42e..d9ecadcaa4 100644 --- a/posix/wordexp-test.c +++ b/posix/wordexp-test.c @@ -115,6 +115,8 @@ struct test_case_struct { 0, NULL, "${var=one two} \"$var\"", 0, 3, { "one", "two", "one two", } }, { 0, "1", "$(( $(echo 3)+$var ))", 0, 1, { "4", } }, { 0, NULL, "\"$(echo \"*\")\"", 0, 1, { "*", } }, + { 0, "foo", "*$var*", 0, 1, { "*foo*", } }, + { 0, "o thr", "*$var*", 0, 2, { "two", "three" } }, /* Other things that should succeed */ { 0, NULL, "\\*\"|&;<>\"\\(\\)\\{\\}", 0, 1, { "*|&;<>(){}", } }, |