Skip to content

Commit 89a7906

Browse files
committed
Merge branch 'master' of github.com:doxygen/doxygen
2 parents 9556542 + 6af9511 commit 89a7906

6 files changed

Lines changed: 13 additions & 10 deletions

File tree

testing/120/f_8cpp.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
<compounddef id="f_8cpp" kind="file" language="C++">
44
<compoundname>f.cpp</compoundname>
55
<briefdescription>
6-
<para>more_116/f.cpp brief (in more_116/f.cpp). </para>
6+
<para><ref refid="f_8cpp" kindref="compound">more_120/f.cpp</ref> brief (in <ref refid="f_8cpp" kindref="compound">more_120/f.cpp</ref>). </para>
77
</briefdescription>
88
<detaileddescription>
99
<para><ref refid="f_8cpp" kindref="compound">more_120/f.cpp</ref> description (in 120_tagfile.cpp).</para>
10-
<para>more_116/f.cpp description (in more_116/f.cpp). </para>
10+
<para><ref refid="f_8cpp" kindref="compound">more_120/f.cpp</ref> description (in <ref refid="f_8cpp" kindref="compound">more_120/f.cpp</ref>). </para>
1111
</detaileddescription>
1212
<location file="more_120/f.cpp"/>
1313
</compounddef>

testing/120/s_2h_8h.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<para><ref refid="s_2h_8h" kindref="compound">s/h.h</ref> brief (in <ref refid="s_2h_8h" kindref="compound">s/h.h</ref>). </para>
77
</briefdescription>
88
<detaileddescription>
9-
<para><ref refid="s_2h_8h" kindref="compound">s/h.h</ref> description (in more_116/f.cpp).</para>
9+
<para><ref refid="s_2h_8h" kindref="compound">s/h.h</ref> description (in <ref refid="f_8cpp" kindref="compound">more_120/f.cpp</ref>).</para>
1010
<para><ref refid="s_2h_8h" kindref="compound">s/h.h</ref> description (in <ref refid="s_2h_8h" kindref="compound">s/h.h</ref>). </para>
1111
</detaileddescription>
1212
<location file="more_120/include/s/h.h"/>

testing/120/t_2s_2h_8h.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<para><ref refid="t_2s_2h_8h" kindref="compound">t/s/h.h</ref> brief (in <ref refid="t_2s_2h_8h" kindref="compound">t/s/h.h</ref>). </para>
77
</briefdescription>
88
<detaileddescription>
9-
<para><ref refid="t_2s_2h_8h" kindref="compound">t/s/h.h</ref> description (in more_116/f.cpp).</para>
9+
<para><ref refid="t_2s_2h_8h" kindref="compound">t/s/h.h</ref> description (in <ref refid="f_8cpp" kindref="compound">more_120/f.cpp</ref>).</para>
1010
<para><ref refid="t_2s_2h_8h" kindref="compound">t/s/h.h</ref> description (in <ref refid="t_2s_2h_8h" kindref="compound">t/s/h.h</ref>). </para>
1111
</detaileddescription>
1212
<location file="more_120/include/t/s/h.h"/>

testing/120_tagfile.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// objective: test the tagfile output
2-
// config: GENERATE_TAGFILE = "$TESTOUTDIR/out/tagfile"
2+
// config: GENERATE_TAGFILE = "$TESTOUTDIR/tagfile"
33
// config: STRIP_FROM_INC_PATH = "$INPUTDIR/more_120/include"
44
// check: 120__tagfile_8cpp.xml
55
// check: class_namespace_1_1_class.xml

testing/more_120/f.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@
33
*
44
* @ingroup Group
55
*
6-
* @brief more_116/f.cpp brief (in more_116/f.cpp).
6+
* @brief more_120/f.cpp brief (in more_120/f.cpp).
77
*
8-
* more_116/f.cpp description (in more_116/f.cpp).
8+
* more_120/f.cpp description (in more_120/f.cpp).
99
*/
1010

1111
/**
1212
* @file s/h.h
1313
*
1414
* @ingroup Group
1515
*
16-
* s/h.h description (in more_116/f.cpp).
16+
* s/h.h description (in more_120/f.cpp).
1717
*/
1818

1919
/**
2020
* @file t/s/h.h
2121
*
2222
* @ingroup Group
2323
*
24-
* t/s/h.h description (in more_116/f.cpp).
24+
* t/s/h.h description (in more_120/f.cpp).
2525
*/

testing/runtests.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,10 @@ def get_config(self):
159159
value = m.group('value')
160160
if (key=='config'):
161161
value = value.replace('$INPUTDIR',self.args.inputdir)
162-
value = value.replace('$TESTOUTDIR',self.test_out)
162+
if (self.args.xml or self.args.xmlxsd):
163+
value = value.replace('$TESTOUTDIR',self.test_out+"/out")
164+
else:
165+
value = value.replace('$TESTOUTDIR',self.test_out)
163166
# print('key=%s value=%s' % (key,value))
164167
config.setdefault(key, []).append(value)
165168
return config

0 commit comments

Comments
 (0)