From b61ccc918f7e8221c5d23a0af90bf67c476dc1ad Mon Sep 17 00:00:00 2001 From: Philipp Ahmann Date: Wed, 3 Jun 2026 07:56:55 +0000 Subject: [PATCH] fix: update test work product references Signed-off-by: Philipp Ahmann --- index.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.rst b/index.rst index 6cfdd3f..5dc4e60 100644 --- a/index.rst +++ b/index.rst @@ -64,7 +64,7 @@ The module template includes the following top-level structure: │ # module verifications [wp__verification_module_ver_report], ├── examples/ # Usage examples for the module / features ├── score/ # Components of the module - │ ├── tests/ # Module-level tests (e.g., feature integration tests, system tests) [wp__verification_comp_int_test] + │ ├── tests/ # Module-level tests (e.g., feature integration tests, system tests) [wp__verification_feat_int_test] │ └── / # Component folder for each component of the module │ ├── docs/ # Documentation of the component │ │ ├── architecture/ # Component architecture [wp__component_arch] @@ -79,9 +79,9 @@ The module template includes the following top-level structure: │ │ ├── security_analysis/ # Security analysis [wp__sw_component_security_analysis] │ │ │ # (only if component architecture exists) │ │ └── manuals/ # User documentation (of a single component, e.g., user manual of a library component, optional) - │ └── src/ # Source files, include files, unit tests [wp__verification_sw_unit_test], - │ ├── / # Lower level component (follows structure) - │ └── tests/ # Component-level tests (e.g., unit tests) [wp__verification_sw_unit_test] + │ ├── src/ # Source files, include files, unit tests [wp__verification_sw_unit_test], + │ │ └── / # Lower level component (follows structure) + │ └── tests/ # Component-level tests (e.g., integration or complex unit tests) [wp__verification_comp_int_test] ├── MODULE.bazel # Bazel module definition ├── BUILD # Root build rules ├── project_config.bzl # Project metadata used by Bazel macros