diff options
author | Denis Vlasenko | 2007-03-05 00:27:50 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-03-05 00:27:50 +0000 |
commit | 1c660b4bd2c303fcb829bc93143fc454693afab4 (patch) | |
tree | 5b2f2c8676d13bc132fdac4506049facd3475235 /shell/ash_test/ash-alias | |
parent | 3af3e5b4b0d12dffbe7bd144092f8cb140ff74a4 (diff) | |
download | busybox-1c660b4bd2c303fcb829bc93143fc454693afab4.zip busybox-1c660b4bd2c303fcb829bc93143fc454693afab4.tar.gz |
small ash testsuite, adapted from bash
(only a small part of it, actually)
Diffstat (limited to 'shell/ash_test/ash-alias')
-rw-r--r-- | shell/ash_test/ash-alias/alias.right | 4 | ||||
-rwxr-xr-x | shell/ash_test/ash-alias/alias.tests | 37 |
2 files changed, 41 insertions, 0 deletions
diff --git a/shell/ash_test/ash-alias/alias.right b/shell/ash_test/ash-alias/alias.right new file mode 100644 index 0000000..0667b21 --- /dev/null +++ b/shell/ash_test/ash-alias/alias.right @@ -0,0 +1,4 @@ +alias: 0 +alias: 0 +./alias.tests: line 25: qfoo: not found +quux diff --git a/shell/ash_test/ash-alias/alias.tests b/shell/ash_test/ash-alias/alias.tests new file mode 100755 index 0000000..8d07b0b --- /dev/null +++ b/shell/ash_test/ash-alias/alias.tests @@ -0,0 +1,37 @@ +# place holder for future alias testing +#ash# shopt -s expand_aliases + +# alias/unalias tests originally in builtins.tests + +unalias -a +# this should return success, according to POSIX.2 +alias +echo alias: $? +alias foo=bar +unalias foo +# this had better return success, according to POSIX.2 +alias +echo alias: $? + +# bug in all versions through bash-2.05b + +unalias qfoo qbar qbaz quux 2>/dev/null + +alias qfoo=qbar +alias qbar=qbaz +alias qbaz=quux +alias quux=qfoo + +qfoo + +unalias qfoo qbar qbaz quux + +unalias -a + +alias foo='echo ' +alias bar=baz +alias baz=quux + +foo bar + +unalias foo bar baz |