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

Builder curl-unthreaded-solaris11-sparc Build #6213

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 9 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 23 mins, 31 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-solaris11-sparc slave
buildername curl-unthreaded-solaris11-sparc Builder
buildnumber 6213 Build
codebase Build
got_revision eae88a7473475511220767b7f2ed792da82a79d6 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision eae88a7473475511220767b7f2ed792da82a79d6 Build
scheduler schedule-curl-unthreaded-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartWed Aug 12 12:10:31 2026
EndWed Aug 12 13:01:04 2026
Elapsed50 mins, 32 secs

All Changes:

:

  1. Change #277947

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 12 Aug 2026 13:32:22
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision da04aa96abc0b9b5700e1146edb613d8ceb1b6e0

    Comments

    tidy-up: comments and formatting
    Closes #22558

    Changed files

    • .github/workflows/macos.yml
    • .github/workflows/windows.yml
    • lib/url.c
    • lib/vauth/spnego_sspi.c
    • tests/server/dnsd.c
    • tests/server/util.c
  2. Change #277950

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 12 Aug 2026 13:43:13
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision eae88a7473475511220767b7f2ed792da82a79d6

    Comments

    urlapi: avoid dedotdotify() if possible
    The dedotdotify() function that removes ./ and ../ sequences from paths
    juggles memory and is slow. Now needs_dedotdot() is called first to
    determine if the removal process is necessary and otherwise avoids doing
    it. Avoids unnecessary memory operations.
    
    Adjusted unit test 1395 accordingly because now a lot of input strings
    return NULL for "no change necessary".
    
    Suggested-by: Max Dymond
    
    Closes #22557

    Changed files

    • lib/urlapi.c
    • tests/unit/unit1395.c