We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
coverage.h
Describe the bug
Application should be able to include the private header coverage.h that is conditionally exposed when CONFIG_COVERAGE_GCOV=y by:
CONFIG_COVERAGE_GCOV=y
#include "coverage"
but since there is a typo in the CMakeLists.txt, it is not able to do so:
CMakeLists.txt
zephyr/subsys/testsuite/CMakeLists.txt
Line 9 in 193eeae
Specifically, the zephyr_BASE variable should be ZEPHYR_BASE instead.
zephyr_BASE
ZEPHYR_BASE
To Reproduce Steps to reproduce the behavior:
CONFIG_COVERAGE_GCOV
west build ...
Expected behavior Compilation should pass
Impact Application can't include the coverage.h, otherwise the compilation fails.
Environment (please complete the following information):
The text was updated successfully, but these errors were encountered:
nashif
Successfully merging a pull request may close this issue.
Describe the bug
Application should be able to include the private header
coverage.h
that is conditionally exposed whenCONFIG_COVERAGE_GCOV=y
by:but since there is a typo in the
CMakeLists.txt
, it is not able to do so:zephyr/subsys/testsuite/CMakeLists.txt
Line 9 in 193eeae
Specifically, the
zephyr_BASE
variable should beZEPHYR_BASE
instead.To Reproduce
Steps to reproduce the behavior:
CONFIG_COVERAGE_GCOV
and try to include thecoverage.h
in an applicationwest build ...
Expected behavior
Compilation should pass
Impact
Application can't include the
coverage.h
, otherwise the compilation fails.Environment (please complete the following information):
The text was updated successfully, but these errors were encountered: