diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-05 00:27:50 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-05 00:27:50 +0000 |
commit | 1c660b4bd2c303fcb829bc93143fc454693afab4 (patch) | |
tree | 5b2f2c8676d13bc132fdac4506049facd3475235 /shell/ash_test/ash-alias | |
parent | 3af3e5b4b0d12dffbe7bd144092f8cb140ff74a4 (diff) | |
download | busybox-w32-1c660b4bd2c303fcb829bc93143fc454693afab4.tar.gz busybox-w32-1c660b4bd2c303fcb829bc93143fc454693afab4.tar.bz2 busybox-w32-1c660b4bd2c303fcb829bc93143fc454693afab4.zip |
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 000000000..0667b2187 --- /dev/null +++ b/shell/ash_test/ash-alias/alias.right | |||
@@ -0,0 +1,4 @@ | |||
1 | alias: 0 | ||
2 | alias: 0 | ||
3 | ./alias.tests: line 25: qfoo: not found | ||
4 | quux | ||
diff --git a/shell/ash_test/ash-alias/alias.tests b/shell/ash_test/ash-alias/alias.tests new file mode 100755 index 000000000..8d07b0b28 --- /dev/null +++ b/shell/ash_test/ash-alias/alias.tests | |||
@@ -0,0 +1,37 @@ | |||
1 | # place holder for future alias testing | ||
2 | #ash# shopt -s expand_aliases | ||
3 | |||
4 | # alias/unalias tests originally in builtins.tests | ||
5 | |||
6 | unalias -a | ||
7 | # this should return success, according to POSIX.2 | ||
8 | alias | ||
9 | echo alias: $? | ||
10 | alias foo=bar | ||
11 | unalias foo | ||
12 | # this had better return success, according to POSIX.2 | ||
13 | alias | ||
14 | echo alias: $? | ||
15 | |||
16 | # bug in all versions through bash-2.05b | ||
17 | |||
18 | unalias qfoo qbar qbaz quux 2>/dev/null | ||
19 | |||
20 | alias qfoo=qbar | ||
21 | alias qbar=qbaz | ||
22 | alias qbaz=quux | ||
23 | alias quux=qfoo | ||
24 | |||
25 | qfoo | ||
26 | |||
27 | unalias qfoo qbar qbaz quux | ||
28 | |||
29 | unalias -a | ||
30 | |||
31 | alias foo='echo ' | ||
32 | alias bar=baz | ||
33 | alias baz=quux | ||
34 | |||
35 | foo bar | ||
36 | |||
37 | unalias foo bar baz | ||