test: ztest: fix math/advanced/functions build#10404
Merged
kv2019i merged 1 commit intothesofproject:mainfrom Dec 1, 2025
Merged
test: ztest: fix math/advanced/functions build#10404kv2019i merged 1 commit intothesofproject:mainfrom
kv2019i merged 1 commit intothesofproject:mainfrom
Conversation
There was a problem hiding this comment.
Pull request overview
This PR fixes the build configuration for the math/advanced/functions ztest unit test, which was merged after a refactor that replaced CONFIG_SOF with CONFIG_SOF_FULL_ZEPHYR_APPLICATION. The changes align this test with the new configuration pattern used by other ztest unit tests.
- Added
CONFIG_SOF_FULL_ZEPHYR_APPLICATION=nto prevent pulling in full SOF dependencies - Removed obsolete
CONFIG_SOF_LOG_LEVELcompile definition
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| test/ztest/unit/math/advanced/functions/prj.conf | Added CONFIG_SOF_FULL_ZEPHYR_APPLICATION=n to align with ztest configuration pattern |
| test/ztest/unit/math/advanced/functions/CMakeLists.txt | Removed obsolete CONFIG_SOF_LOG_LEVEL compile definition |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
abonislawski
approved these changes
Dec 1, 2025
serhiy-katsyuba-intel
approved these changes
Dec 1, 2025
The math/advanced/functions unit test was merged after the refactor that removed CONFIG_SOF and introduced CONFIG_SOF_FULL_ZEPHYR_APPLICATION. This test was missing the CONFIG_SOF_FULL_ZEPHYR_APPLICATION=n setting required for ztest unit tests to build without pulling in full SOF dependencies. Signed-off-by: Tomasz Leman <tomasz.m.leman@intel.com>
lgirdwood
approved these changes
Dec 1, 2025
kv2019i
approved these changes
Dec 1, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The math/advanced/functions unit test was merged after the refactor that removed CONFIG_SOF and introduced CONFIG_SOF_FULL_ZEPHYR_APPLICATION. This test was missing the CONFIG_SOF_FULL_ZEPHYR_APPLICATION=n setting required for ztest unit tests to build without pulling in full SOF dependencies.