Rev 674 | Rev 1069 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 674 | Rev 1054 | ||
|---|---|---|---|
| Line 28... | Line 28... | ||
| 28 | #include <print.h> |
28 | #include <print.h> |
| 29 | #include <test.h> |
29 | #include <test.h> |
| 30 | 30 | ||
| 31 | void test(void) |
31 | void test(void) |
| 32 | { |
32 | { |
| 33 | __u64 u64const = 0x0123456789ABCDEFLL; |
- | |
| 34 | printf(" Printf test \n"); |
33 | printf(" Printf test \n"); |
| - | 34 | printf(" Q %Q %q \n",0x1111111111111111ull, 0x2222222222222222ull); |
|
| - | 35 | printf(" Q,l %Q %l \n", 0x3333333333333333ull, 0x01234567); |
|
| 35 | printf(" Q %Q %q \n",u64const, u64const); |
36 | printf(" l,Q %l %Q \n", 0x01234567, 0x4444444444444444ull); |
| 36 | printf(" L %L %l \n",0x01234567 ,0x01234567); |
37 | printf(" L %L %l \n",0x01234567 ,0x01234567); |
| 37 | printf(" W %W %w \n",0x0123 ,0x0123); |
38 | printf(" W %W %w \n",0x0123 ,0x0123); |
| 38 | printf(" B %B %b \n",0x01 ,0x01); |
39 | printf(" B %B %b \n",0x01 ,0x01); |
| 39 | return; |
40 | return; |
| 40 | } |
41 | } |