4
4
# shellcheck source=bin/default_pythons
5
5
source " bin/default_pythons"
6
6
7
+ assertCaptured " Installing SQLite3"
8
+
7
9
testPythonDefault () {
8
10
updateVersion " pythonDefault" $DEFAULT_PYTHON_VERSION
9
11
compile " pythonDefault"
10
12
assertCaptured $DEFAULT_PYTHON_VERSION
11
13
assertNotCaptured " security update"
14
+ assertCaptured " Installing SQLite3"
12
15
assertCapturedSuccess
13
16
}
14
17
@@ -18,13 +21,15 @@ testPython2() {
18
21
compile " python2"
19
22
assertCaptured $LATEST_27
20
23
assertNotCaptured " security update"
24
+ assertCaptured " Installing SQLite3"
21
25
assertCapturedSuccess
22
26
}
23
27
24
28
testPython2_warn () {
25
29
compile " python2_warn"
26
30
assertCaptured " python-2.7.15"
27
31
assertCaptured " security update!"
32
+ assertCaptured " Installing SQLite3"
28
33
assertCapturedSuccess
29
34
}
30
35
@@ -40,6 +45,7 @@ testPython3_4() {
40
45
compile " python3_4"
41
46
assertCaptured $LATEST_34
42
47
assertNotCaptured " security update"
48
+ assertCaptured " Installing SQLite3"
43
49
assertCapturedSuccess
44
50
fi
45
51
}
@@ -49,6 +55,7 @@ testPython3_4_warn() {
49
55
if [[ $STACK = " cedar-14" ]]; then
50
56
assertCaptured " python-3.4.0"
51
57
assertCaptured " security update!"
58
+ assertCaptured " Installing SQLite3"
52
59
assertCapturedSuccess
53
60
else
54
61
assertCapturedError
@@ -67,6 +74,7 @@ testPython3_5() {
67
74
compile " python3_5"
68
75
assertCaptured $LATEST_35
69
76
assertNotCaptured " security update"
77
+ assertCaptured " Installing SQLite3"
70
78
assertCapturedSuccess
71
79
fi
72
80
}
@@ -93,13 +101,15 @@ testPython3_6() {
93
101
compile " python3_6"
94
102
assertCaptured $LATEST_36
95
103
assertNotCaptured " security update"
104
+ assertCaptured " Installing SQLite3"
96
105
assertCapturedSuccess
97
106
}
98
107
99
108
testPython3_6_warn () {
100
109
compile " python3_6_warn"
101
110
assertCaptured " python-3.6.7"
102
111
assertCaptured " security update!"
112
+ assertCaptured " Installing SQLite3"
103
113
assertCapturedSuccess
104
114
}
105
115
@@ -117,6 +127,7 @@ testPython3_7() {
117
127
else
118
128
assertNotCaptured " security update"
119
129
assertCaptured $LATEST_37
130
+ assertCaptured " Installing SQLite3"
120
131
assertCapturedSuccess
121
132
fi
122
133
}
@@ -128,6 +139,7 @@ testPython3_7_warn() {
128
139
else
129
140
assertCaptured " python-3.7.1"
130
141
assertCaptured " security update!"
142
+ assertCaptured " Installing SQLite3"
131
143
assertCapturedSuccess
132
144
fi
133
145
}
0 commit comments