mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-27 10:05:21 +00:00
When using an IDE (e.g. Eclipse, Qt Creator), the project name gets displayed. This greatly simplifies the navigation between projects when having many of them open at the same time. Naming every project "NONE" defeats this functionality. This patch tries to use sensible project names while not duplicating too much of what is already represented in the path. This is done by using the name of the directory the relevant CMakeLists.txt file is stored in. To ensure unique project names in the samples (and again, in the tests folder) folder, small manual adjustments have been done. Signed-off-by: Reto Schneider <code@reto-schneider.ch> |
||
---|---|---|
.. | ||
src | ||
CMakeLists.txt | ||
prj.conf | ||
README.txt | ||
testcase.yaml |
Title: Kernel Access to Standard Libraries Description: This test verifies kernel access to the standard C libraries. It is intended to catch issues in which a library is completely absent or non-functional, and is NOT intended to be a comprehensive test suite of all functionality provided by the libraries. -------------------------------------------------------------------------------- Building and Running Project: This project outputs to the console. It can be built and executed on QEMU as follows: make run -------------------------------------------------------------------------------- Troubleshooting: Problems caused by out-dated project information can be addressed by issuing one of the following commands then rebuilding the project: make clean # discard results of previous builds # but keep existing configuration info or make pristine # discard results of previous builds # and restore pre-defined configuration info -------------------------------------------------------------------------------- Sample Output: ***** BOOTING ZEPHYR OS vxxxx - BUILD: xxxx ***** Running test suite test_libs tc_start() - limits_test =================================================================== PASS - limits_test. tc_start() - stdbool_test =================================================================== PASS - stdbool_test. tc_start() - stddef_test =================================================================== PASS - stddef_test. tc_start() - stdint_test =================================================================== PASS - stdint_test. tc_start() - string_test =================================================================== PASS - string_test. =================================================================== PROJECT EXECUTION SUCCESSFUL