Changes in uspace/app/tester/print/print1.c [9d58539:94f6df7] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/print/print1.c
r9d58539 r94f6df7 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.