• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

src/03-Aug-2024-957592

CMakeLists.txtD03-Aug-2024224 96

README.txtD03-Aug-20241.4 KiB4632

cbprintf_nano.confD03-Aug-2024137 62

prj.confD03-Aug-2024134 76

prj_new.confD03-Aug-2024131 76

prj_picolibc.confD03-Aug-202489 54

prj_picolibc_new.confD03-Aug-2024163 87

testcase.yamlD03-Aug-20241.1 KiB4241

README.txt

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