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

Builder curl-ares-solaris10-i386 Build #3528

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision5af2457848357141b3b3c67f7a45a4964ec25233
Got Revision5af2457848357141b3b3c67f7a45a4964ec25233
Changes1 change

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 17 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 2 hrs, 51 mins, 30 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 secs )
    1. stdio

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartSat Jul 5 00:43:56 2025
EndSat Jul 5 09:20:10 2025
Elapsed8 hrs, 36 mins, 14 secs

All Changes:

:

  1. Change #238343

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 04 Jul 2025 16:46:53
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 5af2457848357141b3b3c67f7a45a4964ec25233

    Comments

    lib: fix unused parameter/function compiler warnings
    - hostip: fix unused variable with `CURL_DISABLE_SHUFFLE_DNS`
      ```
      lib/hostip.c: In function 'Curl_dnscache_mk_entry':
      lib/hostip.c:490:42: warning: unused parameter 'data' [-Wunused-parameter]
        490 | Curl_dnscache_mk_entry(struct Curl_easy *data,
            |                        ~~~~~~~~~~~~~~~~~~^~~~
      ```
    
    - setopt: fix unused function with `CURL_DISABLE_HTTP`
      ```
      lib/setopt.c:214:17: warning: 'httpauth' defined but not used [-Wunused-function]
        214 | static CURLcode httpauth(struct Curl_easy *data, bool proxy,
            |                 ^~~~~~~~
      ```
    
    - url: fix unused function with `CURL_DISABLE_NETRC`
      ```
      lib/url.c:2760:13: warning: 'str_has_ctrl' defined but not used [-Wunused-function]
       2760 | static bool str_has_ctrl(const char *input)
            |             ^~~~~~~~~~~~
      ```
    
    Seen with a minimal curl-for-win build:
    ```
    CW_CONFIG=dev-x64-zero-osnotls-osnoidn-nohttp-nocurltool-linux-unity
    ```
    
    Closes #17818

    Changed files

    • lib/hostip.c
    • lib/setopt.c
    • lib/url.c