[Intel-gfx] [PATCH i-g-t 2/6] docs: add subtest lists to test descriptions
Thomas Wood
thomas.wood at intel.com
Fri Nov 28 14:45:30 CET 2014
Signed-off-by: Thomas Wood <thomas.wood at intel.com>
---
docs/reference/intel-gpu-tools/Makefile.am | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/docs/reference/intel-gpu-tools/Makefile.am b/docs/reference/intel-gpu-tools/Makefile.am
index cd9c771..d7ef4df 100644
--- a/docs/reference/intel-gpu-tools/Makefile.am
+++ b/docs/reference/intel-gpu-tools/Makefile.am
@@ -39,7 +39,16 @@ xml/igt_test_programs_%_description.xml: $(TESTLISTS)
testprog=$(top_srcdir)/tests/$$test; \
fi; \
./$$testprog --help-description >> $@; \
- echo "</para></refsect2>" >> $@; \
+ echo "</para>" >> $@; \
+ if ./$$testprog --list-subtests > /dev/null ; then \
+ echo "<refsect3><title>Subtests</title>" >> $@; \
+ echo "<simplelist>" >> $@; \
+ for subtest in `./$$testprog --list-subtests`; do \
+ echo "<member>$$subtest</member>" >> $@; \
+ done; \
+ echo "</simplelist></refsect3>" >> $@; \
+ fi; \
+ echo "</refsect2>" >> $@; \
done;
echo "</refsect1>" >> $@
--
2.1.0
More information about the Intel-gfx
mailing list