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

Builder doxygen-solaris10-i386 Build #3036

Results:

Failed shell shell_1 shell_2

SourceStamp:

Projectdoxygen
Repositoryhttps://github.com/doxygen/doxygen.git
Branchmaster
Revision0c41c0a13284c7e02d6af2356fc5cf514c4d740e
Got Revision0c41c0a13284c7e02d6af2356fc5cf514c4d740e
Changes6 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 2 secs )
    1. stdio
  2. MakeDirectory Created ( 0 secs )
    1. - no logs -
  3. shell 'cmake -G ...' failed ( 2 secs )
    1. stdio
    2. CMakeOutput.log
    3. CMakeError.log
  4. shell_1 'gmake' failed ( 0 secs )
    1. stdio
  5. shell_2 'gmake tests' failed ( 0 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/doxygen-solaris10-i386 slave
buildername doxygen-solaris10-i386 Builder
buildnumber 3036 Build
codebase Build
got_revision 0c41c0a13284c7e02d6af2356fc5cf514c4d740e Git
project doxygen Build
repository https://github.com/doxygen/doxygen.git Build
revision 0c41c0a13284c7e02d6af2356fc5cf514c4d740e Build
scheduler schedule-doxygen-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/doxygen-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Dimitri van Heesch
  2. albert-github

Timing:

StartFri Apr 26 20:23:11 2024
EndFri Apr 26 20:23:17 2024
Elapsed5 secs

All Changes:

:

  1. Change #196012

    Category doxygen
    Changed by albert-github <albert.testsohnoyoudont@gmail.com>
    Changed at Tue 23 Apr 2024 14:20:52
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 36f35b5202e196855e2969db1ef2901f51856bdb

    Comments

    Warnings due to multiple "sectioning" commands inside an `\if` type construct
    When having a construct like:
    ```
    /*!
    @if LANG_ENGLISH
    @file test.h
    
    This is the description of test.h
    
    @class Dtk::Core::Fn_Test test.h
    @brief Fn_Test class.
    
    Details about Fn_Test.
    
    @fn const char *Fn_Test::member(char c,int n)
    @brief A member function.
    
    Details of the function
    
    @param c a character.
    @param n an integer.
    @exception std::out_of_range parameter is out of range.
    @return a character pointer.
    
    @fn void Fn_Test::undocumented()
    @brief test
    
    @endif
    */
    ```
    we get warnings like:
    ```
    .../test.en_US.dox:7: warning: Documentation block ended in the middle of a conditional section!
    .../test.en_US.dox:25: warning: found \endif without matching start command
    ```
    due to the fact that the part about the `\file` is ended by means of the `\class` command and later restarted but the test about the `\if` termination does not know about this restart (and thus the warning), and when restarted the `\if...` stack is newly defined specified so the `\endif` is on its own.
    
    We need to "save" the stack for further use.

    Changed files

    • src/cite.cpp
    • src/commentscan.h
    • src/commentscan.l
    • src/fortranscanner.l
    • src/markdown.cpp
    • src/pyscanner.l
    • src/scanner.l
    • src/vhdljjparser.cpp
  2. Change #196013

    Category doxygen
    Changed by albert-github <albert.testsohnoyoudont@gmail.com>
    Changed at Tue 23 Apr 2024 14:40:20
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision effa6d95f726232a709a13fb4e4e075bc0a7a629

    Comments

    Warnings due to multiple "sectioning" commands inside an `\if` type construct
    Corrected typo for internal documentation

    Changed files

    • src/commentscan.h
  3. Change #196014

    Category doxygen
    Changed by Dimitri van Heesch <doxygenohnoyoudont@gmail.com>
    Changed at Fri 26 Apr 2024 19:51:08
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 09ef0d5edf97432135004e8f2c3c02d996437910

    Comments

    Merge branch 'feature/bug_if_section' of https://github.com/albert-github/doxygen into albert-github-feature/bug_if_section

    Changed files

    • no files
  4. Change #196015

    Category doxygen
    Changed by Dimitri van Heesch <doxygenohnoyoudont@gmail.com>
    Changed at Fri 26 Apr 2024 20:19:58
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision bd373c91cf7a05ce496f92e405ee37da8c1378e7

    Comments

    Improved/simplified initialization of GuardedSection stack

    Changed files

    • src/cite.cpp
    • src/commentscan.h
    • src/commentscan.l
    • src/fortranscanner.l
    • src/markdown.cpp
    • src/pyscanner.l
    • src/scanner.l
    • src/vhdljjparser.cpp
  5. Change #196016

    Category doxygen
    Changed by Dimitri van Heesch <doxygenohnoyoudont@gmail.com>
    Changed at Fri 26 Apr 2024 20:20:52
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 3c3745d3099aff9a5da1102bc8a098fa0d54da24

    Comments

    Merge branch 'albert-github-feature/bug_if_section'

    Changed files

    • no files
  6. Change #196017

    Category doxygen
    Changed by Dimitri van Heesch <doxygenohnoyoudont@gmail.com>
    Changed at Fri 26 Apr 2024 20:21:12
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 0c41c0a13284c7e02d6af2356fc5cf514c4d740e

    Comments

    Merge branch 'master' of github.com:doxygen/doxygen

    Changed files

    • no files