1Title: Kernel Access to Standard Libraries 2 3Description: 4 5This test verifies kernel access to the standard C libraries. 6It is intended to catch issues in which a library is completely absent 7or non-functional, and is NOT intended to be a comprehensive test suite 8of all functionality provided by the libraries. 9 10-------------------------------------------------------------------------------- 11 12Building and Running Project: 13 14This project outputs to the console. It can be built and executed 15on QEMU as follows: 16 17 make run 18 19-------------------------------------------------------------------------------- 20 21Troubleshooting: 22 23Problems caused by out-dated project information can be addressed by 24issuing one of the following commands then rebuilding the project: 25 26 make clean # discard results of previous builds 27 # but keep existing configuration info 28or 29 make pristine # discard results of previous builds 30 # and restore pre-defined configuration info 31 32-------------------------------------------------------------------------------- 33 34Sample Output: 35 36***** BOOTING ZEPHYR OS vxxxx - BUILD: xxxx ***** 37Running test suite test_libs 38tc_start() - limits_test 39=================================================================== 40PASS - limits_test. 41tc_start() - stdbool_test 42=================================================================== 43PASS - stdbool_test. 44tc_start() - stddef_test 45=================================================================== 46PASS - stddef_test. 47tc_start() - stdint_test 48=================================================================== 49PASS - stdint_test. 50tc_start() - string_test 51=================================================================== 52PASS - string_test. 53=================================================================== 54PROJECT EXECUTION SUCCESSFUL 55 56