X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=tests%2Fposix2.tests;h=21613790c27e788ca46153e3456ee91f654da39c;hb=28ef6c316f1aff914bb95ac09787a3c83c1815fd;hp=e6d2479289cccbf534d6f0ad373c8510e3013376;hpb=bb70624e964126b7ac4ff085ba163a9c35ffa18f;p=platform%2Fupstream%2Fbash.git diff --git a/tests/posix2.tests b/tests/posix2.tests index e6d2479..2161379 100644 --- a/tests/posix2.tests +++ b/tests/posix2.tests @@ -140,18 +140,20 @@ if [ "$OPTIND" != 3 ] || [ "$store" != a ] || [ "$OPTARG" != aoptval ]; then testfail "getopts" fi +# if I change the default quoting style for variable values, these +# next four must change + newtest SQUOTE="'" val1=$(set | sed -n 's:^SQUOTE=::p') -# if I change the default quoting style for variable values, this must change -if [ "$val1" != "''\'''" ]; then +if [ "$val1" != "\$'\\''" ]; then testfail "variable quoting 1" fi newtest VTILDE='~' val1=$(set | sed -n 's:^VTILDE=::p') -if [ "$val1" != "'~'" ]; then +if [ "$val1" != "\$'~'" ]; then testfail "variable quoting 2" fi @@ -165,7 +167,7 @@ fi newtest VHASH2=#abcd val1=$(set | sed -n 's:^VHASH2=::p') -if [ "$val1" != "'#abcd'" ]; then +if [ "$val1" != "\$'#abcd'" ]; then testfail "variable quoting 4" fi