tests/unix: Add test for printf with %lx format.

This commit is contained in:
Damien George 2017-12-19 15:01:17 +11:00
parent 7cae17fac7
commit e800e4463d
2 changed files with 2 additions and 0 deletions

View File

@ -145,6 +145,7 @@ STATIC mp_obj_t extra_coverage(void) {
mp_printf(&mp_plat_print, "%d %+d % d\n", -123, 123, 123); // sign
mp_printf(&mp_plat_print, "%05d\n", -123); // negative number with zero padding
mp_printf(&mp_plat_print, "%ld\n", 123); // long
mp_printf(&mp_plat_print, "%lx\n", 0x123); // long hex
mp_printf(&mp_plat_print, "%X\n", 0x1abcdef); // capital hex
mp_printf(&mp_plat_print, "%.2s %.3s\n", "abc", "abc"); // fixed string precision
mp_printf(&mp_plat_print, "%.*s\n", -1, "abc"); // negative string precision

View File

@ -2,6 +2,7 @@
-123 +123 123
-0123
123
123
1ABCDEF
ab abc