summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-01-14 20:07:06 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-01-14 20:07:06 (GMT)
commitb47de248b2c4d54bd83a4c679fa6a58dbaf3fe11 (patch)
tree0f80ee48f948a722ee2178fbb81cbfca1c9a2719 /testing
parentac3ad1e58da96a28cb09cb9fab5b34837bc1c292 (diff)
downloadDoxygen-b47de248b2c4d54bd83a4c679fa6a58dbaf3fe11.zip
Doxygen-b47de248b2c4d54bd83a4c679fa6a58dbaf3fe11.tar.gz
Doxygen-b47de248b2c4d54bd83a4c679fa6a58dbaf3fe11.tar.bz2
Updated test 024 to better test spacing behaviour.
Diffstat (limited to 'testing')
-rw-r--r--testing/024/indexpage.xml16
-rw-r--r--testing/024_if.dox20
2 files changed, 35 insertions, 1 deletions
diff --git a/testing/024/indexpage.xml b/testing/024/indexpage.xml
index 7396177..fd94e77 100644
--- a/testing/024/indexpage.xml
+++ b/testing/024/indexpage.xml
@@ -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>
diff --git a/testing/024_if.dox b/testing/024_if.dox
index f24be43..281ffe5 100644
--- a/testing/024_if.dox
+++ b/testing/024_if.dox
@@ -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.
*/