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

Builder curl-threaded-solaris10-i386 Build #4290

Results:

Exception runtest mail result

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 9 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 4 hrs, 50 mins, 18 secs )
    1. stdio
    2. resultlog
  3. Mail result Mail result exception ( 0 secs )
    1. - no logs -

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartSun Mar 22 20:44:45 2026
EndMon Mar 23 06:31:49 2026
Elapsed9 hrs, 47 mins, 3 secs

All Changes:

:

  1. Change #261982

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Mar 2026 13:33:34
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision fcec44df00a650199ccc27e3bc80e0e6b50474a2

    Comments

    FAQ.md: point archive.org link to the original, no-JS, revision [ci skip]
    To make it pass mdlinkcheck, open faster, w/o cookie banner, and not
    need special URL format to make JS happy.
    
    Ref: 1dc0ce956226186f40fdda072e7bd6c0cc035597

    Changed files

    • docs/FAQ.md
  2. Change #262000

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 22 Mar 2026 18:04:08
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e9eddedf38078ac92c0028431271cebbc895686e

    Comments

    Revert "md5/md4: enable unaligned access fast path on powerpc64"
    This reverts commit 21fc17b265ca32c8a5a768dc7cd730754a104740.
    
    That was not properly thought through. PowerPC can run in either endian
    and the preprocessor does not know which.
    
    Ref: #20985
    Closes #21058

    Changed files

    • lib/md4.c
    • lib/md5.c
  3. Change #262001

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 22 Mar 2026 18:06:32
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 57a94fec477a3fd4518081d9bf6fd3df1164f6b0

    Comments

    multi.h: add CURLMNWC_CLEAR_ALL
    The two bitmask constants for *CLEAR_DNS and *CLEAR_CONNS were
    duplicates (both set to 1), so they cannot be distinguished and both
    actions fire.
    
    This shipped in public releases since 8.16.0 to and include 8.19.0.
    
    This fix adds CURLMNWC_CLEAR_ALL to be the new 1, and it now implies all
    bits. The DNS and CONNS defines get two new bits (2, 4).
    
    Follow-up to 55c045c86338bfcc1de676c496f
    
    Found by Codex Security
    Closes #20968

    Changed files

    • docs/libcurl/opts/CURLMOPT_NETWORK_CHANGED.md
    • docs/libcurl/symbols-in-versions
    • include/curl/multi.h
    • lib/multi.c
  4. Change #262006

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Mar 2026 19:15:56
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 757fd6aae90265e4e1021a8f82d086186e303bb7

    Comments

    gnutls: fix clang-tidy warning with !verbose
    with
    `-DCURL_DISABLE_VERBOSE_STRINGS=ON -DCURL_USE_GNUTLS=ON -DCURL_CLANG_TIDY=ON`.
    
    ```
    lib/vtls/gtls.c:268:7: error: Value stored to 'strerr' is never read [clang-analyzer-deadcode.DeadStores,-warnings-as-errors]
      268 |       strerr = gnutls_strerror(rc);
          |       ^        ~~~~~~~~~~~~~~~~~~~
    ```
    
    Closes #21060

    Changed files

    • lib/vtls/gtls.c
  5. Change #262007

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Mar 2026 19:15:56
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e8c64a06c5031bd59fdf914e8ac6c8524c0e4375

    Comments

    asyn-thrdd: fix clang-tidy unused value warning
    with `-DCURL_DISABLE_SOCKETPAIR=ON`.
    
    ```
    lib/asyn-thrdd.c:227:5: error: Value stored to 'do_abort' is never read [clang-analyzer-deadcode.DeadStores,-warnings-as-errors]
      227 |     do_abort = addr_ctx->do_abort;
          |     ^          ~~~~~~~~~~~~~~~~~~
    ```
    
    Closes #21061

    Changed files

    • lib/asyn-thrdd.c