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
73
74
75
76
77
78
#!/bin/sh
# Reference stdout:
# pass
# pass
# pass
# pass
# pass
# pass
echo "-> if..fi with true condition"
if true
then
echo pass
fi
echo "-> if..fi with false condition"
if false
then
echo >&2 "fail: This branch should not have run" && exit 1
fi
echo pass
echo "-> if..else..fi with true condition"
if true
then
echo pass
else
echo >&2 "fail: This branch should not have run" && exit 1
fi
echo "-> if..else..fi with false condition"
if false
then
echo >&2 "fail: This branch should not have run" && exit 1
else
echo pass
fi
echo "-> if..else..fi with true condition"
if true
then
echo pass
else
echo >&2 "fail: This branch should not have run" && exit 1
fi
echo "-> if..else..elif..fi with false condition"
if false
then
echo >&2 "fail: This branch should not have run" && exit 1
elif true
then
echo pass
else
echo >&2 "fail: This branch should not have run" && exit 1
fi
echo "-> test exit status"
if true
then
( exit 10 )
else
( exit 20 )
fi
[ $# -eq 10 ] || { echo >&2 "fail: Expected status code = 10" && exit 1; }
if false
then
( exit 10 )
else
( exit 20 )
fi
[ $# -eq 20 ] || { echo >&2 "fail: Expected status code = 20" && exit 1; }
echo "-> test alternate syntax"
# These tests are only expected to parse, they do not make assertions
if true; then true; fi
if true; then true; else true; fi
if true; then true; elif true; then true; else true; fi