Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder curl-threaded-solaris11-i386 Build #4792

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisiona9e341a469fe1b24b1f9d6947adfd020c64ba43f
Got Revisiona9e341a469fe1b24b1f9d6947adfd020c64ba43f
Changes5 changes

BuildSlave:

unstable11x

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-threaded-solaris11-i386' triggered this build

Steps and Logfiles:

  1. git update ( 12 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 51 mins, 58 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-threaded-solaris11-i386 slave
buildername curl-threaded-solaris11-i386 Builder
buildnumber 4792 Build
codebase Build
got_revision a9e341a469fe1b24b1f9d6947adfd020c64ba43f Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision a9e341a469fe1b24b1f9d6947adfd020c64ba43f Build
scheduler schedule-curl-threaded-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartThu Mar 19 15:58:58 2026
EndThu Mar 19 18:29:24 2026
Elapsed2 hrs, 30 mins, 25 secs

All Changes:

:

  1. Change #261572

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 19 Mar 2026 13:55:34
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 673e14cd33ef720b8c2b7e3485084e6e41a2c9dd

    Comments

    x509asn1: improve encodeOID
    - return error on zero length input
    - return error on OOM or doing too large output
    - fix full 32-bit number support
    - fix the broken handling of the first and second numbers
    - support up to 32-bit minus 80 for the second number
    - a field with a leading 0x80 is now considered an error, since it only
      works as padding and is then no longer the shortest possible version
    
    Add unit tests in 1666
    
    Bonus: removed the last argument to OID2str() as it was always set TRUE.
    
    Closes #21003

    Changed files

    • lib/vtls/x509asn1.c
    • tests/data/Makefile.am
    • tests/data/test1666
    • tests/unit/Makefile.inc
    • tests/unit/unit1666.c
  2. Change #261575

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 19 Mar 2026 14:21:53
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 31add1032227136cf35b2a6b44a5c53786b39cfe

    Comments

    docs: enable more compiler warnings for C snippets, fix 3 finds
    Also:
    - sync gcc option order.
    - unfold lines in C snippet.
    
    Closes #21006

    Changed files

    • .github/scripts/verify-examples.pl
    • .github/scripts/verify-synopsis.pl
    • docs/libcurl/curl_mime_data_cb.md
    • docs/libcurl/curl_ws_recv.md
    • docs/libcurl/opts/CURLOPT_DEBUGFUNCTION.md
  3. Change #261577

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 19 Mar 2026 14:26:56
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 51f813308e5ef1e952c1a46ed247f93bfea0eb42

    Comments

    scripts: harden / tidy up more Perl `system()` calls
    Closes #21007

    Changed files

    • .github/scripts/cmp-config.pl
    • .github/scripts/verify-examples.pl
    • .github/scripts/verify-synopsis.pl
    • scripts/cdall
    • scripts/randdisable
    • scripts/spacecheck.pl
    • tests/certs/genserv.pl
    • tests/libtest/test613.pl
    • tests/sshserver.pl
    • tests/testcurl.pl
  4. Change #261585

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 19 Mar 2026 15:04:12
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f95fadd116d54f9031e3ba081e09e5a4f3aa7209

    Comments

    x509asn1: move declaration to header
    Fixing clang-tidy warning:
    ```
    tests/unit/unit1666.c:50:12: error: call to undeclared function 'encodeOID'; ISO C99 and later do not support implicit function declarations [clang-diagnostic-implicit-function-declaration]
       50 |   result = encodeOID(dbuf, oid, oid + spec->size);
          |            ^
    ```
    Ref: https://github.com/curl/curl/actions/runs/23297585235/job/67749144361?pr=21008#step:46:736
    
    Follow-up to 673e14cd33ef720b8c2b7e3485084e6e41a2c9dd #21003
    
    Closes #21010

    Changed files

    • lib/vtls/x509asn1.c
    • lib/vtls/x509asn1.h
  5. Change #261586

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 19 Mar 2026 15:06:43
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a9e341a469fe1b24b1f9d6947adfd020c64ba43f

    Comments

    optiontable: replace stdin with filename arg, harden `open()` call
    Closes #21008

    Changed files

    • lib/CMakeLists.txt
    • lib/Makefile.am
    • lib/optiontable.pl
    • tests/test1276.pl