Skip to content

Commit a20b7e9

Browse files
committed
Skip connection-timeout test under Valgrind.
Valgrind slows things down so much that the timeout test fails. Skip this test until we figure out if we can make it work.
1 parent c3ffb54 commit a20b7e9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/configs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,12 @@ case "$config" in
176176
tests5="rekey"
177177
case "$config" in
178178
valgrind-1)
179-
# All tests except agent-timeout (which is flaky under valgrind)
179+
# All tests except agent-timeout (which is flaky under valgrind),
180+
# connection-timeout (which doesn't work since it's so slow)
180181
# and hostbased (since valgrind won't let ssh exec keysign).
181182
# Slow ones are run separately to increase parallelism.
182-
SKIP_LTESTS="agent-timeout hostbased ${tests2} ${tests3} ${tests4} ${tests5}"
183+
SKIP_LTESTS="agent-timeout connection-timeout hostbased"
184+
SKIP_LTESTS="$SKIP_LTESTS ${tests2} ${tests3} ${tests4} ${tests5}"
183185
;;
184186
valgrind-2)
185187
LTESTS="${tests2}"

0 commit comments

Comments
 (0)