Changeset f76696f in mainline for uspace/app/tester/print/print1.c
- Timestamp:
- 2012-04-16T19:13:32Z (11 years ago)
- Branches:
- lfn, master, serial
- Children:
- d76a329
- Parents:
- 1db6dfd (diff), b8d6783 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/print/print1.c
r1db6dfd rf76696f 42 42 43 43 TPRINTF("Testing printf(\"%%8.10s\", \"text\"):\n"); 44 TPRINTF("Expected output: \" text\"\n");44 TPRINTF("Expected output: \" text\"\n"); 45 45 TPRINTF("Real output: \"%8.10s\"\n\n", "text"); 46 46 … … 49 49 TPRINTF("Real output: \"%8.10s\"\n\n", "very long text"); 50 50 51 TPRINTF("Testing printf(\"%%-*.*s\", 7, 7, \"text\"):\n"); 52 TPRINTF("Expected output: \"text \"\n"); 53 TPRINTF("Real output: \"%-*.*s\"\n\n", 7, 7, "text"); 54 51 55 return NULL; 52 56 }
Note: See TracChangeset
for help on using the changeset viewer.