Builder doxygen-solaris10-sparc Build #3565
Results:
Failed shell shell_1 shell_2
SourceStamp:
Project | doxygen |
Repository | https://github.com/doxygen/doxygen.git |
Branch | master |
Revision | 6d8bb9c5bdb010fb47e03b47573560674811306c |
Got Revision | 6d8bb9c5bdb010fb47e03b47573560674811306c |
Changes | 2 changes |
BuildSlave:
unstable10sReason:
The SingleBranchScheduler scheduler named 'schedule-doxygen-solaris10-sparc' triggered this build
Steps and Logfiles:
-
git update ( 37 secs )
-
MakeDirectory Created ( 0 secs )
- - no logs -
-
shell 'cmake -G ...' failed ( 22 secs )
-
shell_1 'gmake' failed ( 0 secs )
-
shell_2 'gmake tests' failed ( 0 secs )
Build Properties:
Name | Value | Source |
---|---|---|
branch | master | Build |
builddir | /export/home/buildbot-unstable10s/slave/doxygen-solaris10-sparc | slave |
buildername | doxygen-solaris10-sparc | Builder |
buildnumber | 3565 | Build |
codebase | Build | |
got_revision | 6d8bb9c5bdb010fb47e03b47573560674811306c | Git |
project | doxygen | Build |
repository | https://github.com/doxygen/doxygen.git | Build |
revision | 6d8bb9c5bdb010fb47e03b47573560674811306c | Build |
scheduler | schedule-doxygen-solaris10-sparc | Scheduler |
slavename | unstable10s | BuildSlave |
workdir | /export/home/buildbot-unstable10s/slave/doxygen-solaris10-sparc | slave (deprecated) |
Forced Build Properties:
Name | Label | Value |
---|
Responsible Users:
- Dimitri van Heeschdoxygen@gmail.com
- albert-githubalbert.tests@gmail.com
Timing:
Start | Wed Aug 13 11:52:45 2025 |
End | Wed Aug 13 11:53:46 2025 |
Elapsed | 1 mins, 1 secs |
All Changes:
:
Change #242875
Category doxygen Changed by albert-github <albert.tests @gmail.com>Changed at Tue 12 Aug 2025 18:34:04 Repository https://github.com/doxygen/doxygen.git Project doxygen Branch master Revision a1d64f87c7ac4fd1fd954bf10b47e484844d6493 Comments
issue #11708 [BUG] Variadic macro expansion doesn't work when the arguments contain comments starting with // When having: ``` /** * @brief My struct A. */ typedef PACK(struct { int struct_a_1; ///< Description of struct_a_1 int struct_a_2; // This comment causes the problem }) my_structA_t; ``` and ``` PREDEFINED = PACK(...)=__VA_ARGS__ ``` this will translate during the preprocessing into: ``` /** * @brief My struct A. */ typedef // This comment causes the problem struct { int struct_a_1; /**< Description of struct_a_1 */ int struct_a_2; } my_structA_t; ``` Note the strange place of the `//` comment The problem is that the `//` comment lands in the "catch all" rule: ``` <*>{CPPC}[/!]? ``` instead of having an own rule with the `FindDefineArgs` which retains the comment at the regular place.
Changed files
- src/pre.l
Change #242877
Category doxygen Changed by Dimitri van Heesch <doxygen @gmail.com>Changed at Wed 13 Aug 2025 11:43:49 Repository https://github.com/doxygen/doxygen.git Project doxygen Branch master Revision 6d8bb9c5bdb010fb47e03b47573560674811306c Comments
Merge pull request #11712 from albert-github/feature/issue_11708 issue #11708 [BUG] Variadic macro expansion doesn't work when the arguments contain comments starting with //
Changed files
- no files