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

Builder curl-unthreaded-solaris10-sparc Build #13771

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisione83c82f05f9b714086e62db9fe2ea9be522239bc
Got Revisione83c82f05f9b714086e62db9fe2ea9be522239bc
Changes9 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

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

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-unthreaded-solaris10-sparc slave
buildername curl-unthreaded-solaris10-sparc Builder
buildnumber 13771 Build
codebase Build
got_revision e83c82f05f9b714086e62db9fe2ea9be522239bc Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision e83c82f05f9b714086e62db9fe2ea9be522239bc Build
scheduler schedule-curl-unthreaded-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-unthreaded-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. JimFuller-RedHat
  3. Stefan Eissing

Timing:

StartFri Jan 9 07:15:56 2026
EndFri Jan 9 13:18:45 2026
Elapsed6 hrs, 2 mins, 49 secs

All Changes:

:

  1. Change #254525

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 08 Jan 2026 09:31:39
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7de35515d90d364e851cdde712062b942d6bf36a

    Comments

    mprintf: drop old sprintf fallback
    1. No modern systems lack snprintf()
    
    2. If there actually exist any such systems, they get to manage without
       floating point output.
    
    Closes #20218

    Changed files

    • lib/mprintf.c
  2. Change #254535

    Category curl
    Changed by JimFuller-RedHat <jfullerohnoyoudont@redhat.com>
    Changed at Thu 08 Jan 2026 10:19:16
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision af18d8ea1b3c84933aeb508f1c45780bd35437fe

    Comments

    docs: explicitly call out Slowloris as not a security flaw
    Closes #20219

    Changed files

    • .github/scripts/pyspelling.words
    • docs/VULN-DISCLOSURE-POLICY.md
  3. Change #254553

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 08 Jan 2026 14:15:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 13c1a934144e98d06214a043ff4538791c7d9583

    Comments

    lib: remove uses of PRIu32 by adding "hack" for DJGPP
    Avoid using PRIu32 and PRId32 in product source code. We don't need it.
    It reduces readability. It is also inconsistent since unsigned int has
    the same size and does not require the define.
    
    DJGPP warns about using %u for uint32_t by default because it seems to
    typedef it to unsigned long instead of unsigned int. Which even that is
    annoying since long and int are both 32 bit on this platform.
    
    We use our own *printf() implementation and we know this is safe.
    
    This work-around defines uint32_t for DJGPP into unsigned int to avoid
    the warnings and thus the need to use PRIu32 and PRId32.
    
    Closes #20215

    Changed files

    • lib/conncache.c
    • lib/curl_setup.h
    • lib/multi.c
    • lib/multi_ev.c
    • lib/multi_ntfy.c
    • lib/url.c
    • tests/unit/unit3211.c
    • tests/unit/unit3213.c
  4. Change #254573

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 08 Jan 2026 22:31:07
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2aba8f613c70252e0ed9fb7bd951f3286836b836

    Comments

    urldata.h: remove two forward-declared structs not used
    Closes #20206

    Changed files

    • lib/urldata.h
  5. Change #254574

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 08 Jan 2026 22:33:06
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8a25cf3d7cfdfc0b811738f50c9f0a5c446f1ac5

    Comments

    tool_operate: remove 'else' for VMS
    It seems malplaced as it then avoids the following logic when invoked
    from a VMS shell and that seems unlikely to be desired.
    
    Based on code review. I have no system to try this on.
    
    Follow-up to f1261bcdd7f
    Closes #20221

    Changed files

    • src/tool_operate.c
  6. Change #254575

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 08 Jan 2026 22:34:05
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 97a02fade635f823a46b9cfa5d4bd6608d245755

    Comments

    curl: rename a struct OutStruct field to 'regular_file'
    From 's_isreg'. It explains better in plain English what it is for.
    
    Closes #20222

    Changed files

    • src/tool_cb_hdr.c
    • src/tool_cb_wrt.c
    • src/tool_operate.c
    • src/tool_sdecls.h
  7. Change #254578

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 08 Jan 2026 22:35:06
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e3691612ea1acb28e77fee6b4b2b9da0ac2c8f8b

    Comments

    urldata: switch to uint* types more widely
    In particular, it turns 'unsigned long' into 'uint32_t' since the code
    needs to build and run just as fine on Windows which has 32 bit longs,
    so we know the code works with 32 bit field versions.
    
    This makes Curl_easy 56 bytes smaller on my 64 bit Linux (maximized
    build).
    
    Closes #20209

    Changed files

    • lib/http.c
    • lib/setopt.c
    • lib/urldata.h
  8. Change #254579

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Thu 08 Jan 2026 22:36:38
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f2d008811db2edefad035b9dcfc8865459999ee7

    Comments

    ngtcp2: stabilize recv
    When receiving on a stream that already failed or has already been closed,
    return the matching error code without touching the connection. In case
    the connection shows errors, e.g. the server closed, those errors should
    not have impact on an already failed/closed stream.
    
    This might mitigate flakiness in pytest 07_13 where unexpected errors
    occur after a successful upload.
    
    Closes #20220

    Changed files

    • lib/vquic/curl_ngtcp2.c
  9. Change #254582

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 08 Jan 2026 23:19:44
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e83c82f05f9b714086e62db9fe2ea9be522239bc

    Comments

    COPYING: bump copyright year range to 1996 - 2026

    Changed files

    • COPYING