summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorstefanf <stefanf@FreeBSD.org>2007-10-04 16:14:48 +0000
committerstefanf <stefanf@FreeBSD.org>2007-10-04 16:14:48 +0000
commit7dc3b250aaa5e54527c6bb8f1feb116eca8f7fb2 (patch)
treebb55e154819f0464678c1f725aef74d0bc98283b /tools
parentf1ca7ff2d4a6fadab27fdfe822c3fbd87bffeb12 (diff)
downloadFreeBSD-src-7dc3b250aaa5e54527c6bb8f1feb116eca8f7fb2.zip
FreeBSD-src-7dc3b250aaa5e54527c6bb8f1feb116eca8f7fb2.tar.gz
The exit status of a case statement where none of the patterns is matched
is supposed to be 0, not the status of the previous command. Reported by: Eygene Ryabinkin PR: 116559 Approved by: re (gnn)
Diffstat (limited to 'tools')
-rw-r--r--tools/regression/bin/sh/builtins/case1.013
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/regression/bin/sh/builtins/case1.0 b/tools/regression/bin/sh/builtins/case1.0
new file mode 100644
index 0000000..860fc67
--- /dev/null
+++ b/tools/regression/bin/sh/builtins/case1.0
@@ -0,0 +1,13 @@
+#$FreeBSD$
+f()
+{
+ false
+ case $1 in
+ foo) true ;;
+ bar) false ;;
+ esac
+}
+
+f foo || exit 1
+f bar && exit 1
+f quux || exit 1
OpenPOWER on IntegriCloud