diff options
author | Jilles Tjoelker <jilles@FreeBSD.org> | 2009-06-25 17:36:08 +0000 |
---|---|---|
committer | Jilles Tjoelker <jilles@FreeBSD.org> | 2009-06-25 17:36:08 +0000 |
commit | 886bb283576b3b8c03664cf72635c7cc4a2d625a (patch) | |
tree | 04373643596581aa995fa1d69932ee1b55060be8 /tools/regression | |
parent | 4e1c3993235fe9524677c46011b7ca927790eccd (diff) | |
download | src-886bb283576b3b8c03664cf72635c7cc4a2d625a.tar.gz src-886bb283576b3b8c03664cf72635c7cc4a2d625a.zip |
Add some tests for r194975 and r194977.
Approved by: ed (mentor) (implicit)
Notes
Notes:
svn path=/head/; revision=194981
Diffstat (limited to 'tools/regression')
-rw-r--r-- | tools/regression/bin/sh/expansion/ifs1.0 | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tools/regression/bin/sh/expansion/ifs1.0 b/tools/regression/bin/sh/expansion/ifs1.0 new file mode 100644 index 000000000000..e7f53c77a5f9 --- /dev/null +++ b/tools/regression/bin/sh/expansion/ifs1.0 @@ -0,0 +1,35 @@ +# $FreeBSD$ + +c=: e= s=' ' +failures='' +ok='' + +check_result() { + if [ "x$2" = "x$3" ]; then + ok=x$ok + else + failures=x$failures + echo "For $1, expected $3 actual $2" + fi +} + +IFS=' +' +set -- a '' +set -- "$@" +check_result 'set -- "$@"' "($#)($1)($2)" "(2)(a)()" + +set -- a '' +set -- "$@"$e +check_result 'set -- "$@"$e' "($#)($1)($2)" "(2)(a)()" + +set -- a '' +set -- "$@"$s +check_result 'set -- "$@"$s' "($#)($1)($2)" "(2)(a)()" + +IFS="$c" +set -- a '' +set -- "$@"$c +check_result 'set -- "$@"$c' "($#)($1)($2)" "(2)(a)()" + +test "x$failures" = x |