summaryrefslogtreecommitdiff
path: root/.github/configs
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2022-11-08 09:17:04 +1100
committerDarren Tucker <dtucker@dtucker.net>2022-11-08 10:29:32 +1100
commit4e316ff0f18a118232bb9ac6512ee62773a9e8ea (patch)
treeb179d0b709890e4bbde5e98211a1048791aa4afc /.github/configs
parent21625a6424258a92a96a3bb73ae6aabc5ed8a6b4 (diff)
downloadopenssh-git-4e316ff0f18a118232bb9ac6512ee62773a9e8ea.tar.gz
Split out rekey test since it runs the longest.
Diffstat (limited to '.github/configs')
-rwxr-xr-x.github/configs10
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/configs b/.github/configs
index 1dfde3a7..895635e9 100755
--- a/.github/configs
+++ b/.github/configs
@@ -161,16 +161,17 @@ case "$config" in
export TEST_SSH_ELAPSED_TIMES
# Valgrind slows things down enough that the agent timeout test
# won't reliably pass, and the unit tests run longer than allowed
- # by github so split into three separate tests.
- tests2="rekey integrity try-ciphers"
+ # by github so split into separate tests.
+ tests2="integrity try-ciphers"
tests3="krl forward-control sshsig agent-restrict kextype sftp"
tests4="cert-userkey cert-hostkey kextype sftp-perm keygen-comment percent"
+ tests5="rekey"
case "$config" in
valgrind-1)
# All tests except agent-timeout (which is flaky under valgrind)
# and hostbased (since valgrind won't let ssh exec keysign).
# Slow ones are run separately to increase parallelism.
- SKIP_LTESTS="agent-timeout hostbased ${tests2} ${tests3} ${tests4}"
+ SKIP_LTESTS="agent-timeout hostbased ${tests2} ${tests3} ${tests4} ${tests5}"
;;
valgrind-2)
LTESTS="${tests2}"
@@ -181,6 +182,9 @@ case "$config" in
valgrind-4)
LTESTS="${tests4}"
;;
+ valgrind-5)
+ LTESTS="${tests5}"
+ ;;
valgrind-unit)
TEST_TARGET="unit USE_VALGRIND=1"
;;