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

Builder curl-ares-solaris10-i386 Build #3607

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision10e60e825c8fc0936073a1c8ea4770358d621fcd
Got Revision10e60e825c8fc0936073a1c8ea4770358d621fcd
Changes6 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

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

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Karthik Das
  3. Stefan Eissing
  4. Viktor Szakats

Timing:

StartThu Aug 7 16:09:40 2025
EndFri Aug 8 01:06:19 2025
Elapsed8 hrs, 56 mins, 39 secs

All Changes:

:

  1. Change #242341

    Category curl
    Changed by Karthik Das <92445174+devkdasohnoyoudont@users.noreply.github.com>
    Changed at Thu 07 Aug 2025 09:54:09
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d79269166eae62a87dd7385bc47c5fb770d1cd95

    Comments

    curl_quiche.c: add include
    Fixes #18211
    Closes #18212

    Changed files

    • lib/vquic/curl_quiche.c
  2. Change #242347

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 07 Aug 2025 10:37:10
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 17bf8809ef0c574f71656d5db16f12893c4152d2

    Comments

    cmake: ExternalProject test tidy-ups
    Follow-up to b8296d367aa4277ee297d474fe438da687ffc5ec #18208
    
    Closes #18214

    Changed files

    • .github/workflows/distcheck.yml
    • tests/cmake/CMakeLists.txt
  3. Change #242348

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Thu 07 Aug 2025 10:40:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2d9f24bf24de65b3da1a653e01cbecdd1e7250d6

    Comments

    http: resurrect addition from 41fe621
    For some reason, these lines were unintentionally deleted in 6d5570c.
    Thanks to IoannisGS for noticing.
    
    Bug: https://github.com/curl/curl/pull/18179#issuecomment-3162876532
    Reported-by: IoannisGS on github
    Closes #18215

    Changed files

    • lib/http.c
  4. Change #242349

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 07 Aug 2025 10:43:06
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3b40128b0f11a3dee5524e92768ff18046db20f2

    Comments

    curl: make global truly global
    The GlobalConfig only exists in a single instance and it has worked like
    this since the dawn of time. It is about time we stop passing around
    pointers to what was already essentially a global object and instead
    just use a... global.
    
    It simplifies things.
    
    Closes #18213

    Changed files

    • src/config2setopts.c
    • src/tool_cb_dbg.c
    • src/tool_cb_hdr.c
    • src/tool_cb_rea.c
    • src/tool_cb_wrt.c
    • src/tool_cfgable.c
    • src/tool_cfgable.h
    • src/tool_dirhie.c
    • src/tool_dirhie.h
    • src/tool_doswin.c
    • src/tool_doswin.h
    • src/tool_easysrc.c
    • src/tool_easysrc.h
    • src/tool_filetime.c
    • src/tool_filetime.h
    • src/tool_formparse.c
    • src/tool_formparse.h
    • src/tool_getparam.c
    • src/tool_getparam.h
    • src/tool_helpers.c
    • src/tool_helpers.h
    • src/tool_main.c
    • src/tool_msgs.c
    • src/tool_msgs.h
    • src/tool_operate.c
    • src/tool_operate.h
    • src/tool_operhlp.c
    • src/tool_operhlp.h
    • src/tool_paramhlp.c
    • src/tool_paramhlp.h
    • src/tool_parsecfg.c
    • src/tool_parsecfg.h
    • src/tool_progress.c
    • src/tool_progress.h
    • src/tool_setopt.c
    • src/tool_setopt.h
    • src/tool_ssls.c
    • src/tool_stderr.c
    • src/tool_stderr.h
    • src/var.c
    • src/var.h
    • tests/data/test96
  5. Change #242352

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Thu 07 Aug 2025 11:35:35
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c1372df2e2fa93d4435aeb50d068643b53194000

    Comments

    ares: destroy channel on shutdown
    When we cancel async resolv operations, we have kept an existing ares
    channel open. This seems unreliable as reported in #18216.
    
    To get reliable behaviour, always destroy the ares channel on async
    shutdown and create a new one on demand.
    
    Fixes #18216
    Reported-by: devgs on github
    Closes #18217

    Changed files

    • lib/asyn-ares.c
  6. Change #242361

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Thu 07 Aug 2025 14:44:52
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 10e60e825c8fc0936073a1c8ea4770358d621fcd

    Comments

    cfilters: make Curl_conn_get_socket simpler
    Since it is only used for the first socket anyway, simplify the
    function.
    
    Closes #18219

    Changed files

    • lib/cfilters.c
    • lib/cfilters.h
    • lib/http.c
    • lib/multi.c