1Title: sprintf() APIs 2 3Description: 4 5This test verifies that sprintf() and its variants operate as expected. 6 7-------------------------------------------------------------------------------- 8 9Building and Running Project: 10 11This project outputs to the console. It can be built and executed 12on QEMU as follows: 13 14 make run 15 16-------------------------------------------------------------------------------- 17 18Troubleshooting: 19 20Problems caused by out-dated project information can be addressed by 21issuing one of the following commands then rebuilding the project: 22 23 make clean # discard results of previous builds 24 # but keep existing configuration info 25or 26 make pristine # discard results of previous builds 27 # and restore pre-defined configuration info 28 29-------------------------------------------------------------------------------- 30Sample Output: 31 32tc_start() - Test sprintf APIs 33 34=================================================================== 35Testing sprintf() with integers .... 36Testing snprintf() .... 37Testing vsprintf() .... 38Testing vsnprintf() .... 39Testing sprintf() with strings .... 40Testing sprintf() with misc options .... 41Testing sprintf() with doubles .... 42=================================================================== 43PASS - RegressionTask. 44=================================================================== 45PROJECT EXECUTION SUCCESSFUL 46