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

Builder curl-ares-solaris10-i386 Build #3497

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision6a0cd4feb7c337f840493e2cab1a6ce5a89a9540
Got Revision6a0cd4feb7c337f840493e2cab1a6ce5a89a9540
Changes5 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 2 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 2 hrs, 54 mins, 18 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 24 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 3497 Build
codebase Build
got_revision 6a0cd4feb7c337f840493e2cab1a6ce5a89a9540 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 6a0cd4feb7c337f840493e2cab1a6ce5a89a9540 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. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartSun Jun 22 20:49:54 2025
EndMon Jun 23 05:30:46 2025
Elapsed8 hrs, 40 mins, 51 secs

All Changes:

:

  1. Change #237397

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 22 Jun 2025 12:58:53
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 52f58ebb104033a5a06779efd60c608e94729d37

    Comments

    curl_get_line: make sure lines end with newline
    Verify with test 792 and 793
    
    Reported-by: z2_
    Closes #17697

    Changed files

    • lib/curl_get_line.c
    • tests/data/Makefile.am
    • tests/data/test744
    • tests/data/test792
    • tests/data/test793
  2. Change #237402

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Jun 2025 13:15:13
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 855acb3bb07e0dd06b5722218eb5fded333f7ce0

    Comments

    cmake: add target property dumper helper function
    It's pretty rough and a giant hack, but helps debugging and findind ways
    while navigating the CMake maze. I find it sad CMake doesn't have
    a built-in function for this that works correctly in all situations.
    It's invaluable to be able to see what properties and values an object
    has.
    
    It's also possible there is a better solution to this, but I could not
    find it.
    
    Cherry-picked from #16973
    
    Closes #17701

    Changed files

    • CMake/Utilities.cmake
  3. Change #237403

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Jun 2025 13:15:13
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 855ae7651360d5fbe490634edb86da9f05d1d559

    Comments

    tests/libtest: drop `TEST_HANG_TIMEOUT` redefinition hack
    Before this patch the code relied on re-initializing `TEST_HANG_TIMEOUT`
    macro before compiling each test, to allow them each to override it to
    a custom value for single tests. Thie required re-including `test.h`
    into each test.
    
    After this patch this macro becomes a global, immutable, default. Tests
    which want to override it can now use alternate macros that do accept
    a custom timeout. The only test currently affected is lib1501.
    
    Follow-up to 2c27a67daa1b76859c18d63e4e1f528db05b5e13 #17590
    
    Closes #17702

    Changed files

    • tests/libtest/lib1501.c
    • tests/libtest/test.h
  4. Change #237404

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Jun 2025 13:19:15
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4d4d09eb7f4233ce0e03aec7bbf99a70892630fb

    Comments

    cmake: drop reference to future variable [ci skip]
    Follow-up to 855acb3bb07e0dd06b5722218eb5fded333f7ce0 #17701

    Changed files

    • CMake/Utilities.cmake
  5. Change #237414

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Jun 2025 15:58:15
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 6a0cd4feb7c337f840493e2cab1a6ce5a89a9540

    Comments

    tests: make individual test sources compile cleanly
    Tidy up headers and includes to ensure all individual test source
    compile cleanly (but not link). To allow running clang-tidy (and
    possibly other static analyzers) on them. It also improves readability
    and allows to verify them locally, without the bundle logic.
    
    clang-tidy ignores #included C files, so it's blind to bundle C files
    the include these tests. The current workaround of embedding has
    a couple of downsides:. meaningless filenames and line numbers,
    missing issues, messing up self header paths. Thus, running it on
    individual sources would be beneficial.
    
    Also:
    - de-duplicate includes.
    - untangle some includes.
    - formatting/indentation fixes.
    - merge `getpart.h` into `first.h`.
    
    Ref: https://github.com/curl/curl/pull/17680#issuecomment-2991730158
    
    Closes #17703

    Changed files

    • scripts/mk-unity.pl
    • tests/client/first.c
    • tests/client/first.h
    • tests/client/h2_pausing.c
    • tests/client/h2_serverpush.c
    • tests/client/h2_upgrade_extreme.c
    • tests/client/hx_download.c
    • tests/client/hx_upload.c
    • tests/client/tls_session_reuse.c
    • tests/client/upload_pausing.c
    • tests/client/ws_data.c
    • tests/client/ws_pingpong.c
    • tests/libtest/first.c
    • tests/libtest/first.h
    • tests/libtest/lib1156.c
    • tests/libtest/lib1308.c
    • tests/libtest/lib1485.c
    • tests/libtest/lib1500.c
    • tests/libtest/lib1501.c
    • tests/libtest/lib1502.c
    • tests/libtest/lib1506.c
    • tests/libtest/lib1507.c
    • tests/libtest/lib1508.c
    • tests/libtest/lib1509.c
    • tests/libtest/lib1510.c
    • tests/libtest/lib1511.c
    • tests/libtest/lib1512.c
    • tests/libtest/lib1513.c
    • tests/libtest/lib1514.c
    • tests/libtest/lib1515.c
    • tests/libtest/lib1517.c
    • tests/libtest/lib1518.c
    • tests/libtest/lib1520.c
    • tests/libtest/lib1522.c
    • tests/libtest/lib1523.c
    • tests/libtest/lib1525.c
    • tests/libtest/lib1526.c
    • tests/libtest/lib1527.c
    • tests/libtest/lib1528.c
    • tests/libtest/lib1529.c
    • tests/libtest/lib1530.c
    • tests/libtest/lib1531.c
    • tests/libtest/lib1532.c
    • tests/libtest/lib1533.c
    • tests/libtest/lib1534.c
    • tests/libtest/lib1535.c
    • tests/libtest/lib1536.c
    • tests/libtest/lib1537.c
    • tests/libtest/lib1538.c
    • tests/libtest/lib1540.c
    • tests/libtest/lib1541.c
    • tests/libtest/lib1542.c
    • tests/libtest/lib1545.c
    • tests/libtest/lib1550.c
    • tests/libtest/lib1551.c
    • tests/libtest/lib1552.c
    • tests/libtest/lib1553.c
    • tests/libtest/lib1554.c
    • tests/libtest/lib1555.c
    • tests/libtest/lib1556.c
    • tests/libtest/lib1557.c
    • tests/libtest/lib1558.c
    • tests/libtest/lib1559.c
    • tests/libtest/lib1560.c
    • tests/libtest/lib1564.c
    • tests/libtest/lib1565.c
    • tests/libtest/lib1567.c
    • tests/libtest/lib1568.c
    • tests/libtest/lib1569.c
    • tests/libtest/lib1571.c
    • tests/libtest/lib1576.c
    • tests/libtest/lib1591.c
    • tests/libtest/lib1592.c
    • tests/libtest/lib1593.c
    • tests/libtest/lib1594.c
    • tests/libtest/lib1597.c
    • tests/libtest/lib1598.c
    • tests/libtest/lib1599.c
    • tests/libtest/lib1662.c
    • tests/libtest/lib1900.c
    • tests/libtest/lib1901.c
    • tests/libtest/lib1903.c
    • tests/libtest/lib1905.c
    • tests/libtest/lib1906.c
    • tests/libtest/lib1907.c
    • tests/libtest/lib1908.c
    • tests/libtest/lib1910.c
    • tests/libtest/lib1911.c
    • tests/libtest/lib1912.c
    • tests/libtest/lib1913.c
    • tests/libtest/lib1915.c
    • tests/libtest/lib1916.c
    • tests/libtest/lib1918.c
    • tests/libtest/lib1919.c
    • tests/libtest/lib1933.c
    • tests/libtest/lib1934.c
    • tests/libtest/lib1935.c
    • tests/libtest/lib1936.c
    • tests/libtest/lib1937.c
    • tests/libtest/lib1938.c
    • tests/libtest/lib1939.c
    • tests/libtest/lib1940.c
    • tests/libtest/lib1945.c
    • tests/libtest/lib1947.c
    • tests/libtest/lib1948.c
    • tests/libtest/lib1955.c
    • tests/libtest/lib1956.c
    • tests/libtest/lib1957.c
    • tests/libtest/lib1958.c
    • tests/libtest/lib1959.c
    • tests/libtest/lib1960.c
    • tests/libtest/lib1964.c
    • tests/libtest/lib1970.c
    • tests/libtest/lib1971.c
    • tests/libtest/lib1972.c
    • tests/libtest/lib1973.c
    • tests/libtest/lib1974.c
    • tests/libtest/lib1975.c
    • tests/libtest/lib1977.c
    • tests/libtest/lib1978.c
    • tests/libtest/lib2023.c
    • tests/libtest/lib2032.c
    • tests/libtest/lib2082.c
    • tests/libtest/lib2301.c
    • tests/libtest/lib2302.c
    • tests/libtest/lib2304.c
    • tests/libtest/lib2306.c
    • tests/libtest/lib2308.c
    • tests/libtest/lib2309.c
    • tests/libtest/lib2402.c
    • tests/libtest/lib2404.c
    • tests/libtest/lib2405.c
    • tests/libtest/lib2502.c
    • tests/libtest/lib2700.c
    • tests/libtest/lib3010.c
    • tests/libtest/lib3025.c
    • tests/libtest/lib3026.c
    • tests/libtest/lib3027.c
    • tests/libtest/lib3100.c
    • tests/libtest/lib3101.c
    • tests/libtest/lib3102.c
    • tests/libtest/lib3103.c
    • tests/libtest/lib3104.c
    • tests/libtest/lib3105.c
    • tests/libtest/lib3207.c
    • tests/libtest/lib3208.c
    • tests/libtest/lib500.c
    • tests/libtest/lib501.c
    • tests/libtest/lib502.c
    • tests/libtest/lib503.c
    • tests/libtest/lib504.c
    • tests/libtest/lib505.c
    • tests/libtest/lib506.c
    • tests/libtest/lib507.c
    • tests/libtest/lib508.c
    • tests/libtest/lib509.c
    • tests/libtest/lib510.c
    • tests/libtest/lib511.c
    • tests/libtest/lib512.c
    • tests/libtest/lib513.c
    • tests/libtest/lib514.c
    • tests/libtest/lib515.c
    • tests/libtest/lib516.c
    • tests/libtest/lib517.c
    • tests/libtest/lib518.c
    • tests/libtest/lib519.c
    • tests/libtest/lib520.c
    • tests/libtest/lib521.c
    • tests/libtest/lib523.c
    • tests/libtest/lib524.c
    • tests/libtest/lib525.c
    • tests/libtest/lib526.c
    • tests/libtest/lib530.c
    • tests/libtest/lib533.c
    • tests/libtest/lib536.c
    • tests/libtest/lib537.c
    • tests/libtest/lib539.c
    • tests/libtest/lib540.c
    • tests/libtest/lib541.c
    • tests/libtest/lib542.c
    • tests/libtest/lib543.c
    • tests/libtest/lib544.c
    • tests/libtest/lib547.c
    • tests/libtest/lib549.c
    • tests/libtest/lib552.c
    • tests/libtest/lib553.c
    • tests/libtest/lib554.c
    • tests/libtest/lib555.c
    • tests/libtest/lib556.c
    • tests/libtest/lib557.c
    • tests/libtest/lib558.c
    • tests/libtest/lib559.c
    • tests/libtest/lib560.c
    • tests/libtest/lib562.c
    • tests/libtest/lib564.c
    • tests/libtest/lib566.c
    • tests/libtest/lib567.c
    • tests/libtest/lib568.c
    • tests/libtest/lib569.c
    • tests/libtest/lib570.c
    • tests/libtest/lib571.c
    • tests/libtest/lib572.c
    • tests/libtest/lib573.c
    • tests/libtest/lib574.c
    • tests/libtest/lib575.c
    • tests/libtest/lib576.c
    • tests/libtest/lib578.c
    • tests/libtest/lib579.c
    • tests/libtest/lib582.c
    • tests/libtest/lib583.c
    • tests/libtest/lib586.c
    • tests/libtest/lib589.c
    • tests/libtest/lib590.c
    • tests/libtest/lib591.c
    • tests/libtest/lib597.c
    • tests/libtest/lib598.c
    • tests/libtest/lib599.c
    • tests/libtest/lib643.c
    • tests/libtest/lib650.c
    • tests/libtest/lib651.c
    • tests/libtest/lib652.c
    • tests/libtest/lib653.c
    • tests/libtest/lib654.c
    • tests/libtest/lib655.c
    • tests/libtest/lib658.c
    • tests/libtest/lib659.c
    • tests/libtest/lib661.c
    • tests/libtest/lib666.c
    • tests/libtest/lib667.c
    • tests/libtest/lib668.c
    • tests/libtest/lib670.c
    • tests/libtest/lib674.c
    • tests/libtest/lib676.c
    • tests/libtest/lib677.c
    • tests/libtest/lib678.c
    • tests/libtest/lib694.c
    • tests/libtest/lib695.c
    • tests/libtest/lib751.c
    • tests/libtest/lib753.c
    • tests/libtest/memptr.c
    • tests/libtest/mk-lib1521.pl
    • tests/libtest/testtrace.c
    • tests/libtest/testtrace.h
    • tests/libtest/testutil.c
    • tests/libtest/testutil.h
    • tests/server/Makefile.inc
    • tests/server/dnsd.c
    • tests/server/first.c
    • tests/server/first.h
    • tests/server/getpart.c
    • tests/server/getpart.h
    • tests/server/mqttd.c
    • tests/server/resolve.c
    • tests/server/rtspd.c
    • tests/server/sockfilt.c
    • tests/server/socksd.c
    • tests/server/sws.c
    • tests/server/tftpd.c
    • tests/server/util.c