2015-08-15 02:13:25 +08:00
|
|
|
Title: sprintf() APIs
|
2015-04-11 07:44:37 +08:00
|
|
|
|
|
|
|
Description:
|
|
|
|
|
|
|
|
This test verifies that sprintf() and its variants operate as expected.
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
Building and Running Project:
|
|
|
|
|
|
|
|
This microkernel project outputs to the console. It can be built and executed
|
|
|
|
on QEMU as follows:
|
|
|
|
|
2017-01-08 05:31:34 +08:00
|
|
|
make run
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2015-06-01 22:30:09 +08:00
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2015-04-11 07:44:37 +08:00
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
Sample Output:
|
|
|
|
|
|
|
|
tc_start() - Test Microkernel sprintf APIs
|
|
|
|
|
|
|
|
===================================================================
|
|
|
|
Testing sprintf() with integers ....
|
|
|
|
Testing snprintf() ....
|
|
|
|
Testing vsprintf() ....
|
|
|
|
Testing vsnprintf() ....
|
|
|
|
Testing sprintf() with strings ....
|
|
|
|
Testing sprintf() with misc options ....
|
|
|
|
Testing sprintf() with doubles ....
|
|
|
|
===================================================================
|
|
|
|
PASS - RegressionTask.
|
|
|
|
===================================================================
|
2015-06-05 20:24:47 +08:00
|
|
|
PROJECT EXECUTION SUCCESSFUL
|