~jakub/helenos/ia64-revival

« back to all changes in this revision

Viewing changes to uspace/app/tester/print/print1.c

  • Committer: Jakub Jermar
  • Date: 2011-04-13 14:45:41 UTC
  • mfrom: (527.1.397 main-clone)
  • Revision ID: jakub@jermar.eu-20110413144541-x0j3r1zxqhsljx1o
MergeĀ mainlineĀ changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
        TPRINTF("Expected output: \"very long \"\n");
49
49
        TPRINTF("Real output:     \"%8.10s\"\n\n", "very long text");
50
50
        
51
 
        TPRINTF("Testing printf(\"%%s\", NULL):\n");
52
 
        TPRINTF("Expected output: \"(NULL)\"\n");
53
 
        TPRINTF("Real output:     \"%s\"\n\n", NULL);
54
 
        
55
51
        return NULL;
56
52
}