summaryrefslogtreecommitdiff
path: root/tests/builtins.tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests/builtins.tests')
-rw-r--r--tests/builtins.tests12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/builtins.tests b/tests/builtins.tests
index 979a4de0..3c286338 100644
--- a/tests/builtins.tests
+++ b/tests/builtins.tests
@@ -4,18 +4,6 @@ set +o posix
ulimit -c 0 2>/dev/null
-# alias/unalias 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: $?
-
# check that break breaks loops
for i in a b c; do echo $i; break; echo bad-$i; done
echo end-1