From 3ca333c922a5d29ca9ce563cdb90a3ede7a184c7 Mon Sep 17 00:00:00 2001 From: lhxj <2743257167@qq.com> Date: Wed, 5 Nov 2025 22:51:29 +0800 Subject: [PATCH] fix(doc): Exclude 'src/utest/perf/README.md' from Doxygen build (RT-Thread#10888) Problem description: The file 'src/utest/perf/README.md' was incorrectly appearing as a root-level page in the Doxygen documentation output. Problem analysis: This file was unintentionally included by the Doxygen build process following commit 7499790. It is an internal README for performance tests and is not intended to be part of the generated documentation. Solution: The issue is resolved by explicitly excluding this file from the build. The path '../src/utest/perf/README.md' has been added to the EXCLUDE list in both 'documentation/Doxyfile.1.9.1' and 'documentation/Doxyfile.1.9.8'. This issue was originally introduced by the following commit: Commit: 7499790 Title: utest: core: move perf testcase from example to src Signed-off-by: lhxj <2743257167@qq.com> --- documentation/Doxyfile.1.9.1 | 3 ++- documentation/Doxyfile.1.9.8 | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/documentation/Doxyfile.1.9.1 b/documentation/Doxyfile.1.9.1 index 83600af45a8..a3086a58d4b 100644 --- a/documentation/Doxyfile.1.9.1 +++ b/documentation/Doxyfile.1.9.1 @@ -924,7 +924,8 @@ RECURSIVE = YES EXCLUDE = ./0.doxygen/mainpage.h \ ./2.quick-start/quick_start_qemu \ ./env/env-vscode.md \ - ./7.contribution/coding_style_cn.md + ./7.contribution/coding_style_cn.md \ + ../src/utest/perf/README.md # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded diff --git a/documentation/Doxyfile.1.9.8 b/documentation/Doxyfile.1.9.8 index df9debd3ad1..159136906cc 100644 --- a/documentation/Doxyfile.1.9.8 +++ b/documentation/Doxyfile.1.9.8 @@ -1014,7 +1014,8 @@ RECURSIVE = YES EXCLUDE = ./0.doxygen/mainpage.h \ ./2.quick-start/quick_start_qemu \ ./env/env-vscode.md \ - ./7.contribution/coding_style_cn.md + ./7.contribution/coding_style_cn.md \ + ../src/utest/perf/README.md # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded