Skip to content

Commit 24e0858

Browse files
committed
add sqlite tests
1 parent 1721fa3 commit 24e0858

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

test/run-versions

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@
44
# shellcheck source=bin/default_pythons
55
source "bin/default_pythons"
66

7+
assertCaptured "Installing SQLite3"
8+
79
testPythonDefault() {
810
updateVersion "pythonDefault" $DEFAULT_PYTHON_VERSION
911
compile "pythonDefault"
1012
assertCaptured $DEFAULT_PYTHON_VERSION
1113
assertNotCaptured "security update"
14+
assertCaptured "Installing SQLite3"
1215
assertCapturedSuccess
1316
}
1417

@@ -18,13 +21,15 @@ testPython2() {
1821
compile "python2"
1922
assertCaptured $LATEST_27
2023
assertNotCaptured "security update"
24+
assertCaptured "Installing SQLite3"
2125
assertCapturedSuccess
2226
}
2327

2428
testPython2_warn() {
2529
compile "python2_warn"
2630
assertCaptured "python-2.7.15"
2731
assertCaptured "security update!"
32+
assertCaptured "Installing SQLite3"
2833
assertCapturedSuccess
2934
}
3035

@@ -40,6 +45,7 @@ testPython3_4() {
4045
compile "python3_4"
4146
assertCaptured $LATEST_34
4247
assertNotCaptured "security update"
48+
assertCaptured "Installing SQLite3"
4349
assertCapturedSuccess
4450
fi
4551
}
@@ -49,6 +55,7 @@ testPython3_4_warn() {
4955
if [[ $STACK = "cedar-14" ]]; then
5056
assertCaptured "python-3.4.0"
5157
assertCaptured "security update!"
58+
assertCaptured "Installing SQLite3"
5259
assertCapturedSuccess
5360
else
5461
assertCapturedError
@@ -67,6 +74,7 @@ testPython3_5() {
6774
compile "python3_5"
6875
assertCaptured $LATEST_35
6976
assertNotCaptured "security update"
77+
assertCaptured "Installing SQLite3"
7078
assertCapturedSuccess
7179
fi
7280
}
@@ -93,13 +101,15 @@ testPython3_6() {
93101
compile "python3_6"
94102
assertCaptured $LATEST_36
95103
assertNotCaptured "security update"
104+
assertCaptured "Installing SQLite3"
96105
assertCapturedSuccess
97106
}
98107

99108
testPython3_6_warn() {
100109
compile "python3_6_warn"
101110
assertCaptured "python-3.6.7"
102111
assertCaptured "security update!"
112+
assertCaptured "Installing SQLite3"
103113
assertCapturedSuccess
104114
}
105115

@@ -117,6 +127,7 @@ testPython3_7() {
117127
else
118128
assertNotCaptured "security update"
119129
assertCaptured $LATEST_37
130+
assertCaptured "Installing SQLite3"
120131
assertCapturedSuccess
121132
fi
122133
}
@@ -128,6 +139,7 @@ testPython3_7_warn() {
128139
else
129140
assertCaptured "python-3.7.1"
130141
assertCaptured "security update!"
142+
assertCaptured "Installing SQLite3"
131143
assertCapturedSuccess
132144
fi
133145
}

0 commit comments

Comments
 (0)