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

Builder curl-ares-solaris10-i386 Build #4231

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision9a3afc1083202731ed34e3f71cf345ecc6dd9296
Got Revision9a3afc1083202731ed34e3f71cf345ecc6dd9296
Changes3 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 14 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 5 hrs, 4 mins, 48 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-ares-solaris10-i386 slave
buildername curl-ares-solaris10-i386 Builder
buildnumber 4231 Build
codebase Build
got_revision 9a3afc1083202731ed34e3f71cf345ecc6dd9296 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 9a3afc1083202731ed34e3f71cf345ecc6dd9296 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:

StartFri Mar 6 18:52:08 2026
EndSat Mar 7 09:52:44 2026
Elapsed15 hrs, 36 secs

All Changes:

:

  1. Change #259975

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 06 Mar 2026 04:04:09
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c6cfb2a2f34df80c6d746d1cb07705d3fac7e67a

    Comments

    cmake: fix `LOCATION` property read errors in target debug function
    Exclude reading certain props for certain target types to avoid these errors:
    ```
    CMake Error at CMake/Utilities.cmake:71 (get_property):
      The LOCATION property may not be read from target "...".  Use the target
      name directly with add_custom_command, or use the generator expression
      $<TARGET_FILE>, as appropriate.
    ```
    (and the same in line 78.)
    
    Follow-up to 855acb3bb07e0dd06b5722218eb5fded333f7ce0 #17701
    
    Closes #20828

    Changed files

    • CMake/Utilities.cmake
  2. Change #259982

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 06 Mar 2026 04:56:33
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 009facd23216d0884913d7db32c54bcd36ab002c

    Comments

    cmake: improve clang-tidy test command-line reproduction
    - also query `INTERFACE_COMPILE_DEFINITIONS` and
      `INTERFACE_COMPILE_OPTIONS`.
      To further sync clang-tidy manual command-lines with the C compiler
      command-lines generated by CMake. In practice this adds `-I` options
      (via `INTERFACE_COMPILE_OPTIONS`) to the end of the command-line for
      dependency header directories. It does not change the outcome of
      clang-tidy runs.
    
    - limit querying `COMPILE_DEFINITIONS` and `COMPILE_OPTIONS` to the top
      target, the test itself. To not include options such as
      `-DCURL_HIDDEN_SYMBOLS` and `-fvisibility=hidden` (when set) via
      the libcurl shared lib.
      To sync with the actual C compiler command-line.
    
    - drop redundant `unset()`.
    
    - rename local function to be more specific.
    
    Follow-up to d9386a2f8ec3c4bd5ababc4eeb96ecd3e522b77c #20759
    
    Closes #20829

    Changed files

    • CMake/Macros.cmake
    • scripts/cmakelint.sh
  3. Change #260039

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 06 Mar 2026 15:35:27
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9a3afc1083202731ed34e3f71cf345ecc6dd9296

    Comments

    cmake: fix `LOCATION` property access condition (debug)
    To match other parts of curl's CMake script and the CMake source.
    
    Ref: https://gitlab.kitware.com/cmake/cmake/-/blob/v3.18.0/Source/cmTargetPropertyComputer.h?ref_type=tags#L68-101
    
    Follow-up to c6cfb2a2f34df80c6d746d1cb07705d3fac7e67a #20828
    
    Closes #20838

    Changed files

    • CMake/Utilities.cmake