From 6d5bcfaab9146bc3784fd9effb01c921b4b7e69d Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 19 Jul 2025 12:07:33 +0200 Subject: [PATCH] add temp job revealing an issue Found while making a typo and accidentally running tests in the MultiSSL job. ``` test 1308...[formpost tests] libtests returned 44, when expecting 0 1308: exit FAILED == Contents of files in the log/15/ dir after test 1308 === Start of file commands.log ./libtest/libtests lib1308 log/15/test-1308 > log/15/stdout1308 2> log/15/stderr1308 === End of file commands.log === Start of file server.cmd Testnum 1308 === End of file server.cmd === Start of file stderr1308 URL: log/15/test-1308 /Users/runner/work/curl/curl/tests/libtest/lib1308.c:70 Assertion 'res == 0' FAILED: curl_formget returned error /Users/runner/work/curl/curl/tests/libtest/lib1308.c:72 Assertion 'total_size == 518' FAILED: curl_formget got wrong size back /Users/runner/work/curl/curl/tests/libtest/lib1308.c:88 Assertion 'res == 0' FAILED: curl_formget returned error /Users/runner/work/curl/curl/tests/libtest/lib1308.c:89 Assertion 'total_size == 899' FAILED: curl_formget got wrong size back Test ended with result 44 === End of file stderr1308 === Start of file test-1308 Piece of the file that is to uploaded as a formpost ``` https://github.com/curl/curl/actions/runs/16387468868/job/46309039397#step:16:2515 --- .github/workflows/macos.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index c714592aa6..fae3537d01 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -285,6 +285,10 @@ jobs: install_steps: clang-tidy generate: -DCURL_USE_OPENSSL=ON -DOPENSSL_ROOT_DIR=/opt/homebrew/opt/openssl -DCURL_DEFAULT_SSL_BACKEND=openssl -DCURL_USE_GNUTLS=ON -DCURL_USE_MBEDTLS=ON -DENABLE_ARES=ON -DCURL_USE_GSASL=ON -DUSE_LIBRTMP=ON -DUSE_APPLE_IDN=ON -DUSE_SSLS_EXPORT=ON -DCURL_CLANG_TIDY=ON -DCLANG_TIDY=/opt/homebrew/opt/llvm/bin/clang-tidy -DCURL_COMPLETION_FISH=ON -DCURL_COMPLETION_ZSH=ON chkprefill: _chkprefill + - name: 'MultiSSL AppleIDN +examples TEST' + compiler: clang + install: llvm brotli zstd gnutls nettle mbedtls gsasl rtmpdump fish + generate: -DCURL_USE_OPENSSL=ON -DOPENSSL_ROOT_DIR=/opt/homebrew/opt/openssl -DCURL_DEFAULT_SSL_BACKEND=openssl -DCURL_USE_GNUTLS=ON -DCURL_USE_MBEDTLS=ON -DENABLE_ARES=ON -DCURL_USE_GSASL=ON -DUSE_LIBRTMP=ON -DUSE_APPLE_IDN=ON -DUSE_SSLS_EXPORT=ON -DCURL_CLANG_TIDY=ON -DCLANG_TIDY=/opt/homebrew/opt/llvm/bin/clang-tidy -DCURL_COMPLETION_FISH=ON -DCURL_COMPLETION_ZSH=ON - name: 'quictls +static libssh +examples' install: quictls libssh generate: -DOPENSSL_ROOT_DIR=/opt/homebrew/opt/quictls -DBUILD_STATIC_LIBS=ON -DCURL_USE_LIBSSH2=OFF -DCURL_USE_LIBSSH=ON