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

Builder curl-unthreaded-solaris10-i386 Build #16290

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 9 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 5 mins, 16 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 33 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 16290 Build
codebase Build
got_revision 18af4e4e109f3825d1891c32aacb064fdd7e9dc4 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 18af4e4e109f3825d1891c32aacb064fdd7e9dc4 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. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartThu Dec 25 12:11:53 2025
EndThu Dec 25 12:20:43 2025
Elapsed8 mins, 50 secs

All Changes:

:

  1. Change #253257

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 25 Dec 2025 12:00:22
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e78a466ebddd35d25b14487ef4a03081e13773fe

    Comments

    lib: drop unused protocol headers
    - drop unused `http.h` includes.
    - drop unused `http1.h` include.
    - drop unused `http2.h` includes.
    - vssh/ssh.h: drop unused `vssh.h` include.
    - urldata.h: drop unused protocol includes.
    - url: include `smtp.h` directly.
    - rtsp.h: include directly where used.
    - imap, smtp: drop redundant include, move another from .h to .c.
    
    Verified with an all non-unity CI run.
    
    Closes #20093

    Changed files

    • lib/cf-h2-proxy.c
    • lib/content_encoding.c
    • lib/easy.c
    • lib/ftp.c
    • lib/http.c
    • lib/http2.h
    • lib/http_chunks.c
    • lib/imap.c
    • lib/imap.h
    • lib/pop3.c
    • lib/sendf.c
    • lib/setopt.c
    • lib/smtp.c
    • lib/smtp.h
    • lib/transfer.c
    • lib/url.c
    • lib/urldata.h
    • lib/vssh/libssh.c
    • lib/vssh/libssh2.c
    • lib/vssh/ssh.h
    • tests/unit/unit2603.c
  2. Change #253258

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 25 Dec 2025 12:05:23
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 18af4e4e109f3825d1891c32aacb064fdd7e9dc4

    Comments

    cookie: flush better
    The cookie flushing (saving to a cookie jar) should only be done if a
    transfer has been started. This is now done by checking the
    cookies->running field, which is not reset in curl_easy_reset() so the
    saving works correctly even after a call to that.
    
    Follow-up to fd6eb8d6e77d95e71c
    
    Verified by test 1920
    
    Reported-by: Alexander Batischev
    Fixes #20090
    Closes #20094

    Changed files

    • lib/cookie.c
    • tests/data/Makefile.am
    • tests/data/test1920
    • tests/libtest/Makefile.inc
    • tests/libtest/lib1920.c