Skip to content

Commit c36c0e9

Browse files
authoredSep 6, 2024··
fix socat integration CI (#1833)
socat started cutting off the tests prematurely if the test hadn't finished yet with these commits: * 4d03b37da1226f5d76d1503487d7cd8b90c4d80 * b5b9ee0031eb0f38a71b44a45723d728265ee1bd A lot of tests are related to specific warnings that socat emits based on the openssl version not supporting certain things. My suspicion is that the additional time when writing to the logs breaks the 3 millisecond threshold and socat determines that we've failed the test. Extending this time threshold to 50 milliseconds gets past things. By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and the ISC license.
1 parent 16ca6e7 commit c36c0e9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎tests/ci/integration/run_socat_integration.sh

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ function build_and_test_socat() {
2424
autoconf
2525
./configure --enable-openssl-base="$AWS_LC_INSTALL_FOLDER"
2626
make -j "$NUM_CPU_THREADS"
27+
# See: t/V1497389456.
28+
# socat decreased the test wait time to 3 milliseconds, which causes failures when additional warnings/logs are written.
29+
# Extending the wait time to 50 milliseconds is just right for us.
30+
sed -i 's/MILLIs=\$((3/MILLIs=\$((50/' ./test.sh
2731
# test 146 OPENSSLLISTENDSA: fails because AWS-LC doesn't support FFDH ciphersuites which are needed for DSA
2832
# test 216 UDP6MULTICAST_UNIDIR: known flaky test in socat with newer kernels
2933
# test 309 OPENSSLRENEG1: AWS-LC doesn't support renegotiation by default, it can be enabled by calling SSL_set_renegotiate_mode

0 commit comments

Comments
 (0)
Please sign in to comment.