What changed, and why it matters
This commit adds a one-line configuration file telling CMake/CTest where to upload test results (a CDash dashboard URL). It does not change how Bitcoin Core is built or tested by default, and it does not introduce any security-relevant code change.
No security action required. Reviewers may optionally confirm the CDash URL is under project control if desired, but the change is not security-sensitive.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit introduces CTestConfig.cmake containing only set(CTEST_SUBMIT_URL "https://my.cdash.org/submit.php?project=bitcoin-core"). This file is consumed by CTest when a developer explicitly runs ctest -D Experimental or a similar dashboard submission command. It has no effect on normal configure/build/test workflows and does not alter binaries, network behavior, or permissions.
Changed components
CTestConfig.cmake (new CMake/CTest dashboard configuration file)Inspect captured patch +1 / −0
diff --git a/CTestConfig.cmake b/CTestConfig.cmake
new file mode 100644
index 00000000..0eca9bf1
--- /dev/null
+++ b/CTestConfig.cmake
@@ -0,0 +1 @@
+set(CTEST_SUBMIT_URL "https://my.cdash.org/submit.php?project=bitcoin-core")
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.