[v2,1/4] dts: add tests package to API docs
Checks
Commit Message
The test suites are not documented in the API as their respective
documentation files are missing.
Signed-off-by: Luca Vizzarro <luca.vizzarro@arm.com>
Reviewed-by: Paul Szczepanek <paul.szczepanek@arm.com>
---
doc/api/dts/index.rst | 1 +
doc/api/dts/tests.TestSuite_hello_world.rst | 9 +++++++++
doc/api/dts/tests.TestSuite_os_udp.rst | 9 +++++++++
.../tests.TestSuite_pmd_buffer_scatter.rst | 9 +++++++++
doc/api/dts/tests.TestSuite_smoke_tests.rst | 9 +++++++++
doc/api/dts/tests.TestSuite_vlan.rst | 10 ++++++++++
doc/api/dts/tests.rst | 19 +++++++++++++++++++
7 files changed, 66 insertions(+)
create mode 100644 doc/api/dts/tests.TestSuite_hello_world.rst
create mode 100644 doc/api/dts/tests.TestSuite_os_udp.rst
create mode 100644 doc/api/dts/tests.TestSuite_pmd_buffer_scatter.rst
create mode 100644 doc/api/dts/tests.TestSuite_smoke_tests.rst
create mode 100644 doc/api/dts/tests.TestSuite_vlan.rst
create mode 100644 doc/api/dts/tests.rst
@@ -14,6 +14,7 @@ Packages
:includehidden:
:maxdepth: 1
+ tests
framework.testbed_model
framework.remote_session
framework.params
new file mode 100644
@@ -0,0 +1,9 @@
+.. SPDX-License-Identifier: BSD-3-Clause
+
+hello_world Test Suite
+======================
+
+.. automodule:: tests.TestSuite_hello_world
+ :members:
+ :show-inheritance:
+
new file mode 100644
@@ -0,0 +1,9 @@
+.. SPDX-License-Identifier: BSD-3-Clause
+
+os_udp Test Suite
+=================
+
+.. automodule:: tests.TestSuite_os_udp
+ :members:
+ :show-inheritance:
+
new file mode 100644
@@ -0,0 +1,9 @@
+.. SPDX-License-Identifier: BSD-3-Clause
+
+pmd_buffer_scatter Test Suite
+=============================
+
+.. automodule:: tests.TestSuite_pmd_buffer_scatter
+ :members:
+ :show-inheritance:
+
new file mode 100644
@@ -0,0 +1,9 @@
+.. SPDX-License-Identifier: BSD-3-Clause
+
+smoke_tests Test Suite
+======================
+
+.. automodule:: tests.TestSuite_smoke_tests
+ :members:
+ :show-inheritance:
+
new file mode 100644
@@ -0,0 +1,10 @@
+
+.. SPDX-License-Identifier: BSD-3-Clause
+
+vlan Test Suite
+===============
+
+.. automodule:: tests.TestSuite_vlan
+ :members:
+ :show-inheritance:
+
new file mode 100644
@@ -0,0 +1,19 @@
+.. SPDX-License-Identifier: BSD-3-Clause
+
+tests - Test Suites Package
+==============================
+
+.. automodule:: tests
+ :members:
+ :show-inheritance:
+
+.. toctree::
+ :hidden:
+ :maxdepth: 1
+
+ tests.TestSuite_hello_world
+ tests.TestSuite_os_udp
+ tests.TestSuite_pmd_buffer_scatter
+ tests.TestSuite_smoke_tests
+ tests.TestSuite_vlan
+