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

Builder curl-threaded-solaris10-i386 Build #4201

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision08b31b1c8b49fc399ee16adf626fc7483543ecdd
Got Revision08b31b1c8b49fc399ee16adf626fc7483543ecdd
Changes8 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

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

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Arnav-Purushotam-CUBoulder
  2. Dan Fandrich
  3. Daniel Stenberg
  4. Viktor Szakats

Timing:

StartTue Jan 27 01:45:22 2026
EndTue Jan 27 16:35:04 2026
Elapsed14 hrs, 49 mins, 42 secs

All Changes:

:

  1. Change #256410

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 26 Jan 2026 12:08:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 63d75de95d3e3b93f4146539fa1b7d868641898f

    Comments

    GHA: sync up configure option order across builds
    Closes #20423

    Changed files

    • .github/workflows/http3-linux.yml
    • .github/workflows/linux-old.yml
    • .github/workflows/linux.yml
    • .github/workflows/non-native.yml
    • .github/workflows/windows.yml
  2. Change #256413

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 26 Jan 2026 12:28:25
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 04c060b0044779a5728033b0773026fa0c43fcfe

    Comments

    RELEASE-PROCEDURE.md: update future release dates

    Changed files

    • docs/RELEASE-PROCEDURE.md
  3. Change #256418

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 26 Jan 2026 12:47:02
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 146de2460a68d06c29d4f4723ca33f9079dcf43f

    Comments

    RELEASE-NOTES: synced

    Changed files

    • RELEASE-NOTES
  4. Change #256419

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 26 Jan 2026 12:53:03
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision fa6a46473e6d4f97aff56a0bd823229052c8c2d2

    Comments

    tool_cb_hdr: with -J, use the redirect name as a backup
    The -J / --remote-header-name logic now records the file name part used
    in the redirects so that it can use the last one as a name if no
    Content-Disposition header arrives.
    
    Add tests to verify:
    
    1641: -J with a redirect and extract the CD contents in the second
    response
    
    1642: -J with a redirect but no Content-Disposition, use the name from
    the Location: header
    
    1643: -J with two redirects, using the last file name and also use
    queries and fragments to verify them stripped off
    
    Closes #20430

    Changed files

    • docs/TODO.md
    • docs/cmdline-opts/remote-header-name.md
    • src/tool_cb_hdr.c
    • src/tool_sdecls.h
    • tests/data/Makefile.am
    • tests/data/test1641
    • tests/data/test1642
    • tests/data/test1643
  5. Change #256421

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 26 Jan 2026 13:21:46
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2f8c9812b120a6802d57329f4c90dac91101ea14

    Comments

    tool: rename curl handle and result variable in `--libcurl`-generated code
    To match documentation, examples and curl source code:
    - `hnd` -> `curl`
    - `ret` -> `result`
    
    Closes #20437

    Changed files

    • src/tool_easysrc.c
    • src/tool_setopt.c
    • tests/data/data1400.c
    • tests/data/data1401.c
    • tests/data/data1402.c
    • tests/data/data1403.c
    • tests/data/data1404.c
    • tests/data/data1405.c
    • tests/data/data1406.c
    • tests/data/data1407.c
    • tests/data/data1420.c
    • tests/data/data1465.c
    • tests/data/data1481.c
  6. Change #256424

    Category curl
    Changed by Arnav-Purushotam-CUBoulder <arpu9852ohnoyoudont@colorado.edu>
    Changed at Mon 26 Jan 2026 13:48:05
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9b20a672b865fd69d7596ca7dcdfc0cbcf6b9dc7

    Comments

    include: mask computed auth/proto bitmasks to 32 bits
    GCC 15.2 warns when assigning computed "all" bitmask macros to 32-bit
    flag types because negated masks expand to the full width of unsigned
    long/long on 64-bit platforms.
    
    Mask these macros to a 32-bit domain so they do not set high bits and
    avoid -Woverflow/-Wconversion warnings in callers.
    
    Reported-by: Patrick Monnerat
    Fixes #20242
    Closes #20416

    Changed files

    • include/curl/curl.h
    • lib/setopt.c
    • lib/urldata.h
  7. Change #256427

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 26 Jan 2026 16:07:58
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 33f606cd51995b68a0f68ac478f7395d8acda17b

    Comments

    checksrc-all.pl: skip non-repository files
    To avoid noise due to local C files when using automatic local checksrc
    checks (e.g. via CMake `-DCURL_LINT=ON` option, or `curl-lint` target).
    
    Also replace single-quote with double-quote in external git command, for
    portability.
    
    Follow-up to 88ff396549e12f070c65e69a0411d2e3e00be5b0 #17882
    Follow-up to e785e898a6a32fc63b35615b55a147d309082f3d #17376
    
    Closes #20439

    Changed files

    • scripts/checksrc-all.pl
  8. Change #256454

    Category curl
    Changed by Dan Fandrich <danohnoyoudont@coneharvesters.com>
    Changed at Mon 26 Jan 2026 21:12:05
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 08b31b1c8b49fc399ee16adf626fc7483543ecdd

    Comments

    docs: add LibreELEC to DISTROS.md

    Changed files

    • docs/DISTROS.md