Module Name: src
Committed By: kre
Date: Mon Mar 20 11:48:41 UTC 2017
Modified Files:
src/tests/bin/sh: t_expand.sh
Log Message:
PR bin/52090 - the $* tests are no longer expected to fail.
To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/tests/bin/sh/t_expand.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_expand.sh
diff -u src/tests/bin/sh/t_expand.sh:1.10 src/tests/bin/sh/t_expand.sh:1.11
--- src/tests/bin/sh/t_expand.sh:1.10 Sun Mar 19 20:29:30 2017
+++ src/tests/bin/sh/t_expand.sh Mon Mar 20 11:48:41 2017
@@ -1,4 +1,4 @@
-# $NetBSD: t_expand.sh,v 1.10 2017/03/19 20:29:30 kre Exp $
+# $NetBSD: t_expand.sh,v 1.11 2017/03/20 11:48:41 kre Exp $
#
# Copyright (c) 2007, 2009 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -557,7 +557,7 @@ dollar_star_with_empty_ifs_body() {
check 'IFS=""; set -- a "b c"; set -- "$*" ; echo $# "$*"' \
'1 ab c' 0 #14
- results 'PR bin/52090 expect 7 of 14 subtests to fail'
+ results # FIXED: 'PR bin/52090 expect 7 of 14 subtests to fail'
}
atf_test_case dollar_star_in_word_empty_ifs
@@ -599,7 +599,7 @@ dollar_star_in_word_empty_ifs_body() {
check 'IFS="";set -- a "b c";set -- "${xXx:-$*}";echo $# "${xXx:-$*}"' \
'1 ab c' 0 #14
- results 'PR bin/52090 expect 7 of 14 subtests to fail'
+ results # FIXED: 'PR bin/52090 expect 7 of 14 subtests to fail'
}
atf_test_case dollar_star_in_quoted_word
@@ -659,7 +659,7 @@ dollar_star_in_quoted_word_body() {
check 'IFS="";set -- a "b c";set -- ${xXx:-"$*"};echo $# ${xXx:-$*}' \
'1 ab c' 0 #26
- results 'PR bin/52090 - 2 of 26 subtests expected to fail'
+ results # FIXED: 'PR bin/52090 - 2 of 26 subtests expected to fail'
}
atf_init_test_cases() {