Skip to content

Commit

Permalink
Add doxygen components to TF-PSA-Crypto
Browse files Browse the repository at this point in the history
This commit adds the components check_doxy_blocks and
check_doxygen_warnings to TF-PSA-Crypto.

Signed-off-by: Harry Ramsey <[email protected]>
  • Loading branch information
Harry-Ramsey committed Jan 30, 2025
1 parent df85eda commit 3bdf84d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/scripts/components-basic-checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,3 +117,15 @@ component_tf_psa_crypto_check_test_helpers () {
msg "unit test: translate_ciphers.py"
python3 -m unittest framework/scripts/translate_ciphers.py 2>&1
}

component_tf_psa_crypto_check_doxy_blocks () {
msg "Check: doxygen markup outside doxygen blocks" # < 1s
$FRAMEWORK/scripts/check-doxy-blocks.pl
}

component_tf_psa_crypto_check_doxygen_warnings () {
msg "Check: doxygen warnings (builds the documentation)" # ~ 3s
cmake -DGEN_FILES=ON .
make
$FRAMEWORK/scripts/doxygen.sh
}

0 comments on commit 3bdf84d

Please sign in to comment.