summaryrefslogtreecommitdiffstats
path: root/tests/set-e1.sub
blob: cdd4d635a2d92292d6f49cc1fca438012b1425a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#   This program is free software: you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published by
#   the Free Software Foundation, either version 3 of the License, or
#   (at your option) any later version.
#
#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU General Public License for more details.
#
#   You should have received a copy of the GNU General Public License
#   along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
# subshell failure should cause the shell to exit silently
${THIS_SH} -ce '(exit 17) ; echo "after (exit 17): $?"'

# pipeline failure should cause shell to exit silently
${THIS_SH} -c 'set -e ; false | echo foo | while read x ; do ( exit 17 ) ; done; echo after pipeline subshell;'

# should be silent in posix mode
${THIS_SH} -c 'set -o posix; set -e ; z=$(false;echo posix foo) ; echo $z'
# but echo foo in non-posix
${THIS_SH} -c 'set -e ; z=$(false;echo non-posix foo) ; echo $z'

${THIS_SH} -ce 'x=$(false) ; echo "x=\$(false) does not exit"'

${THIS_SH} -ce '{ false; echo false in brace group does not exit; }'
echo after brace group failure: $?

${THIS_SH} -ce '(false ; echo A $?) && echo B $?; echo C $?'; echo D $?

${THIS_SH} -ce '(false ; echo A $?) ; echo B $?; echo C $?'; echo D $?

${THIS_SH} -ce 'f() (false ; echo A $?); f && echo B $?; echo C $?'; echo D $?

${THIS_SH} -ce 'f() (false ; echo A $?) ; f; echo B $?; echo C $?'; echo D $?

${THIS_SH} -ce 'if false; echo A $?; then echo B $?; fi'; echo C $?

${THIS_SH} -ce '! { false; echo A $?; } | cat; echo B $?'; echo C $?

${THIS_SH} -ce '{ false; echo A $?; } | cat ; echo B $?'; echo C $?

set -e

! false
echo after negation 1: $?

! false | false
echo after negation 2: $?

! true
echo after negation 3: $?

! (false)
echo after negation 4: $?

{ false ; echo foo; } | cat
echo after brace pipeline

false | echo foo | cat
echo after failure 1

false | (echo foo; false) | true
echo after failure 2

false | echo foo | while read x ; do ( exit 17 ) ; done | true
echo after failure 3

# this pipeline failure should cause the shell to exit
false | echo foo | false
echo after failure 4