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

Builder curl-pr-unthreaded-solaris10-i386 Build #3723

Results:

Build successful

SourceStamp:

Projectcurl/curl
Repositoryhttps://github.com/curl/curl
Branchmaster
Revision8a45c2851aeb6f3ec18ad5c39c4042ab516891dd
Got Revision8a45c2851aeb6f3ec18ad5c39c4042ab516891dd
Changes7 changes

BuildSlave:

unstable10x

Reason:

The AnyBranchScheduler scheduler named 'schedule-curl-pr' triggered this build

Steps and Logfiles:

  1. git update ( 7 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 1 hrs, 8 mins, 48 secs )
    1. stdio
    2. resultlog

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartWed Apr 2 16:13:20 2025
EndWed Apr 2 20:54:21 2025
Elapsed4 hrs, 41 mins, 0 secs

All Changes:

:

  1. Change #226348

    Category None
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 02 Apr 2025 07:46:30
    Repository https://github.com/curl/curl
    Project curl/curl
    Branch master
    Revision b0c5a1abdbf598721435a4cc93b299c3dc59f56d

    Comments

    THANKS: new contributors from 8.13.0 release

    Changed files

    • docs/THANKS
  2. Change #226349

    Category None
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 02 Apr 2025 07:46:30
    Repository https://github.com/curl/curl
    Project curl/curl
    Branch master
    Revision 1c3149881769e7bd79b072e48374e4c2b3678b2f

    Comments

    RELEASE-NOTES: synced

    Changed files

    • RELEASE-NOTES
  3. Change #226362

    Category None
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 02 Apr 2025 11:44:26
    Repository https://github.com/curl/curl
    Project curl/curl
    Branch master
    Revision 8c2392e564d108480e395811d421558e38e99188

    Comments

    contrithanks.sh: drop set -e
    
    Makes the script work again
    
    Closes #16914

    Changed files

    • scripts/contrithanks.sh
  4. Change #226370

    Category None
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 02 Apr 2025 12:54:46
    Repository https://github.com/curl/curl
    Project curl/curl
    Branch master
    Revision 202a333e4d0a7e2c256f36df85f94731d25117f1

    Comments

    processhelp.pm: avoid potential endless loop, log more (Windows)
    
    `pidwait()` is a function to wait for a PID to disappear from the list
    of processes. On Windows change this function to:
    
    - reduce the frequency of calling the external command `tasklist` to
      query the list of processes, including Windows-native ones, to 0.2s
      (from 0.01s).
    
    - print a message when the wait exceeds 5 second marks.
    
    - give up after 20 seconds of total wait, and print a message.
    
    Also log `taskkill` commands to stdout instead of the log.
    
    To potentially avoid hangs seen in CI, and make these spots more
    transparent through the log.
    
    Ref: #16840
    Ref: #14854
    
    Closes #16908

    Changed files

    • tests/processhelp.pm
  5. Change #226378

    Category None
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 02 Apr 2025 14:01:27
    Repository https://github.com/curl/curl
    Project curl/curl
    Branch master
    Revision 1d84d683bb44c305c13188b31d2117ff95a22da7

    Comments

    test: make unittest 1308 into a libtest
    
    Test 1308 was wrongly marked a unit test when in reality it is a
    libtest.
    
    Closes #16891

    Changed files

    • tests/data/test1308
    • tests/libtest/CMakeLists.txt
    • tests/libtest/Makefile.am
    • tests/libtest/Makefile.inc
    • tests/libtest/lib1301.c
    • tests/libtest/lib1308.c
    • tests/unit/Makefile.inc
    • tests/unit/unit1308.c
  6. Change #226387

    Category None
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 02 Apr 2025 14:17:56
    Repository https://github.com/curl/curl
    Project curl/curl
    Branch master
    Revision 0c6e63a1be26a5ba4c953bcacd29c1db412e7e95

    Comments

    lib: unify conversions to/from hex
    
    Curl_hexbyte - output a byte as a two-digit ASCII hex number
    
    Curl_hexval - convert an ASCII hex digit to its binary value
    
    ... instead of duplicating similar code and hexdigit strings in numerous
    places.
    
    Closes #16888

    Changed files

    • lib/escape.c
    • lib/escape.h
    • lib/http_aws_sigv4.c
    • lib/inet_pton.c
    • lib/strparse.c
    • lib/strparse.h
    • lib/urlapi.c
    • lib/vtls/keylog.c
  7. Change #226388

    Category None
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 02 Apr 2025 14:17:56
    Repository https://github.com/curl/curl
    Project curl/curl
    Branch master
    Revision 8a45c2851aeb6f3ec18ad5c39c4042ab516891dd

    Comments

    lib1960: revert the use of libcurl's inet_pton
    
    Since it now uses hex conversion code from strparse as well.
    
    Closes #16888

    Changed files

    • tests/libtest/Makefile.inc
    • tests/libtest/lib1960.c