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

Builder curl-unthreaded-solaris10-i386 Build #16119

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision6694a42aa0e820a6fe1e59d85ff8597b6d768d8d
Got Revision6694a42aa0e820a6fe1e59d85ff8597b6d768d8d
Changes2 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 17 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 2 mins, 25 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-unthreaded-solaris10-i386 slave
buildername curl-unthreaded-solaris10-i386 Builder
buildnumber 16119 Build
codebase Build
got_revision 6694a42aa0e820a6fe1e59d85ff8597b6d768d8d Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 6694a42aa0e820a6fe1e59d85ff8597b6d768d8d Build
scheduler schedule-curl-unthreaded-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartWed Dec 3 14:58:14 2025
EndWed Dec 3 15:00:59 2025
Elapsed2 mins, 44 secs

All Changes:

:

  1. Change #250812

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 03 Dec 2025 14:50:16
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c3b030b860a2c1b2a74e032bb82b981d2f806249

    Comments

    lib: fix formatting nits (part 3)
    From `lib/h` to `lib/w`.
    
    part 1: 47a1ab2ebecb21485c0e955316d90511e80a3c43 #19764
    part 2: 86b346443b68cde7ef33e1ab770e6c8ab641d2b1 #19800
    
    Closes #19811

    Changed files

    • lib/hash.c
    • lib/hash.h
    • lib/headers.c
    • lib/headers.h
    • lib/hmac.c
    • lib/hostip.c
    • lib/hostip.h
    • lib/hostip4.c
    • lib/hsts.c
    • lib/hsts.h
    • lib/http.c
    • lib/http.h
    • lib/http1.c
    • lib/http2.c
    • lib/http2.h
    • lib/http_aws_sigv4.c
    • lib/http_aws_sigv4.h
    • lib/http_chunks.c
    • lib/http_digest.c
    • lib/http_negotiate.c
    • lib/http_ntlm.c
    • lib/http_proxy.c
    • lib/http_proxy.h
    • lib/httpsrr.c
    • lib/httpsrr.h
    • lib/idn.c
    • lib/if2ip.c
    • lib/if2ip.h
    • lib/imap.c
    • lib/imap.h
    • lib/ldap.c
    • lib/llist.c
    • lib/llist.h
    • lib/md4.c
    • lib/md5.c
    • lib/memdebug.c
    • lib/mime.c
    • lib/mime.h
    • lib/mprintf.c
    • lib/mqtt.c
    • lib/multi.c
    • lib/multi_ev.c
    • lib/multi_ntfy.c
    • lib/multi_ntfy.h
    • lib/multiif.h
    • lib/netrc.c
    • lib/netrc.h
    • lib/noproxy.c
    • lib/openldap.c
    • lib/parsedate.c
    • lib/pingpong.c
    • lib/pingpong.h
    • lib/pop3.c
    • lib/progress.c
    • lib/psl.c
    • lib/rand.c
    • lib/rand.h
    • lib/ratelimit.c
    • lib/request.c
    • lib/request.h
    • lib/rtsp.c
    • lib/rtsp.h
    • lib/select.c
    • lib/select.h
    • lib/sendf.c
    • lib/sendf.h
    • lib/setopt.c
    • lib/setopt.h
    • lib/setup-os400.h
    • lib/setup-vms.h
    • lib/sha256.c
    • lib/sigpipe.h
    • lib/slist.c
    • lib/smb.c
    • lib/smtp.c
    • lib/socketpair.h
    • lib/socks.c
    • lib/socks.h
    • lib/socks_gssapi.c
    • lib/socks_sspi.c
    • lib/splay.c
    • lib/strcase.c
    • lib/strcase.h
    • lib/strdup.h
    • lib/strerror.c
    • lib/system_win32.c
    • lib/telnet.c
    • lib/tftp.c
    • lib/transfer.c
    • lib/transfer.h
    • lib/uint-bset.c
    • lib/uint-bset.h
    • lib/uint-hash.c
    • lib/uint-hash.h
    • lib/uint-spbset.c
    • lib/uint-table.c
    • lib/url.c
    • lib/urlapi.c
    • lib/urldata.h
    • lib/version.c
    • lib/ws.c
    • lib/ws.h
  2. Change #250813

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 03 Dec 2025 14:50:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 6694a42aa0e820a6fe1e59d85ff8597b6d768d8d

    Comments

    idn: avoid allocations and wcslen on Windows
    Eliminate a heap buffer in both `win32_idn_to_ascii()` and
    `win32_ascii_to_idn()`, by replacing it with stack buffer. The maximum
    size is fixed in these cases, and small enough to fit there.
    
    Also reuse length returned by the UTF-8 to wchar conversion, allowing
    to drop `wcslen()` call in both functions, and allowing to call
    the wchar to UTF-8 conversion API `WideCharToMultiByte()` with the known
    length, saving length calculations within that API too.
    
    Ref: https://github.com/curl/curl/pull/19748#issuecomment-3592015200
    
    Closes #19798

    Changed files

    • lib/idn.c