Skip to content

Commit

Permalink
Updated test 024 to better test spacing behaviour.
Browse files Browse the repository at this point in the history
  • Loading branch information
doxygen committed Jan 14, 2020
1 parent ac3ad1e commit b47de24
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
16 changes: 15 additions & 1 deletion testing/024/indexpage.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,21 @@
<briefdescription>
</briefdescription>
<detaileddescription>
<para>Unconditional (start) Enabled (if). Enabled (else). Unconditional (middle) Enabled (else). Unconditional (end) </para>
<para>Unconditional (start) Enabled (if). Enabled (else). Unconditional (middle) Enabled (else). Unconditional (end)</para>
<sect1 id="index_1autotoc_md0">
<title>with spaces</title>
<para>test1 test3 test4.</para>
<para>test1 test2 test4.</para>
<para>test1 test2 test3.</para>
<para>test1 test3.</para>
</sect1>
<sect1 id="index_1autotoc_md1">
<title>without spaces</title>
<para>test1test3test4.</para>
<para>test1test2test4.</para>
<para>test1test2test3.</para>
<para>test1test3. </para>
</sect1>
</detaileddescription>
</compounddef>
</doxygen>
20 changes: 20 additions & 0 deletions testing/024_if.dox
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,24 @@
* Enabled (else).
* \endif
* Unconditional (end)
*
* # with spaces
*
* test1 \ifnot GUARD_ENABLED test2 \else test3 \endif test4.
*
* test1 \if GUARD_ENABLED test2 \else test3 \endif test4.
*
* test1 \if GUARD_ENABLED test2 \endif test3.
*
* test1 \if NOT_ENABLED test2 \endif test3.
*
* # without spaces
*
* test1\ifnot GUARD_ENABLED test2\else test3\endif test4.
*
* test1\if GUARD_ENABLED test2\else test3\endif test4.
*
* test1\if GUARD_ENABLED test2\endif test3.
*
* test1\if NOT_ENABLED test2\endif test3.
*/

0 comments on commit b47de24

Please sign in to comment.