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

Builder doxygen-solaris10-sparc Build #3213

Results:

Failed shell shell_1 shell_2

SourceStamp:

Projectdoxygen
Repositoryhttps://github.com/doxygen/doxygen.git
Branchmaster
Revisionf97118465d7bfaf8a0ae8ccf918de64ce2c8ab60
Got Revisionf97118465d7bfaf8a0ae8ccf918de64ce2c8ab60
Changes2 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

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

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Dimitri van Heesch
  2. albert-github

Timing:

StartMon Sep 9 21:18:28 2024
EndMon Sep 9 21:19:27 2024
Elapsed59 secs

All Changes:

:

  1. Change #207116

    Category doxygen
    Changed by albert-github <albert.testsohnoyoudont@gmail.com>
    Changed at Mon 09 Sep 2024 15:56:08
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 2b9107a2855dfb12166911f5c5bb4038220dc21f

    Comments

    Repeated variable names is code browser
    When having the python program:
    ```
    ## class
    class A:
    
        def __INIT__(self):
            self.custom_height = None
            pass
    
        def do_int(self):
            self.custom_height = 42
            print(self.custom_height)
        def do_dble(self):
            self.custom_height = 3.1415
            print(self.custom_height)
    
        def do_bool(self):
            self.custom_height = True
            print(self.custom_height)
    
    a = A()
    a.do_int()
    a.do_bool()
    a.do_dble()
    ```
    
    the source code gives lines like:
    ```
            self.custom_heightcustom_heightcustom_height = True
            print(self.custom_heightcustom_heightcustom_height)
    ```
    so repeated variable name `custom_height`.
    Selecting just the first one.

    Changed files

    • src/pycode.l
  2. Change #207117

    Category doxygen
    Changed by Dimitri van Heesch <doxygenohnoyoudont@gmail.com>
    Changed at Mon 09 Sep 2024 21:12:14
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision f97118465d7bfaf8a0ae8ccf918de64ce2c8ab60

    Comments

    Merge pull request #11126 from albert-github/feature/bug_py_mult_var
    Repeated variable names is code browser

    Changed files

    • no files