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

Builder curl-threaded-solaris11-sparc Build #5660

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision3a19987a87f393d9394fe5acc7643f6c263c92db
Got Revision3a19987a87f393d9394fe5acc7643f6c263c92db
Changes3 changes

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 6 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 22 mins, 45 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-threaded-solaris11-sparc slave
buildername curl-threaded-solaris11-sparc Builder
buildnumber 5660 Build
codebase Build
got_revision 3a19987a87f393d9394fe5acc7643f6c263c92db Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 3a19987a87f393d9394fe5acc7643f6c263c92db Build
scheduler schedule-curl-threaded-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Stefan Eissing

Timing:

StartTue Apr 14 17:14:28 2026
EndTue Apr 14 18:02:56 2026
Elapsed48 mins, 27 secs

All Changes:

:

  1. Change #264484

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Tue 14 Apr 2026 16:48:20
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision bcd94e275076680bcad673478950ab19a7b2c9ee

    Comments

    socks: use dns filter for resolving
    Use a dns connection filter to resolve hostnames where their addresses
    are locally resolved and forwarded to the SOCKS proxy.
    
    This makes all improvements, like in #21295 for example, also apply
    to socks connections. Curl_resolv() is now only called from a DNS
    filter.
    
    (ftp still calls Curl_resolv_blocking() in two places, one of which
     may be replaceable with a DNS filter as well to remove the block, tbd)
    
    Closes #21297

    Changed files

    • lib/cf-dns.c
    • lib/cf-dns.h
    • lib/socks.c
  2. Change #264485

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Tue 14 Apr 2026 16:49:07
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 86f1e5b3f6c90e453368fdf23c366c1d4a8c953b

    Comments

    test dnsd: implement delayed responses
    Add "Delay-A: ms", "Delay-AAAA: ms" and "Delay-HTTPS: ms" to the test
    dnsd config and implement delayed response handling.
    
    Add test_21_09 and test_21_10 to check that delayed responses connect
    using the undelayed address family.
    
    Closes #21299

    Changed files

    • docs/libcurl/libcurl-env-dbg.md
    • lib/asyn-thrdd.c
    • src/config2setopts.c
    • src/tool_operate.c
    • tests/http/test_21_resolve.py
    • tests/http/testenv/dnsd.py
    • tests/server/dnsd.c
  3. Change #264489

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 14 Apr 2026 16:59:11
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3a19987a87f393d9394fe5acc7643f6c263c92db

    Comments

    urldata: move cookiehost to struct SingleRequest
    To make it scoped for the single request appropriately.
    
    Reported-by: Muhamad Arga Reksapati
    
    Verify with libtest 2504: a custom Host *disabled* on reused handle
    
    Closes #21312

    Changed files

    • lib/http.c
    • lib/request.c
    • lib/request.h
    • lib/url.c
    • lib/urldata.h
    • tests/data/Makefile.am
    • tests/data/test2504
    • tests/libtest/Makefile.inc
    • tests/libtest/lib2504.c