From 9e677114e4aba8fdb417350a87ce1af33cef127f Mon Sep 17 00:00:00 2001 From: Damien George Date: Mon, 1 Feb 2016 15:08:42 +0000 Subject: py/mpprint: Fix sign extension when printf'ing %u, %x and %X. --- unix/coverage.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'unix/coverage.c') diff --git a/unix/coverage.c b/unix/coverage.c index 94d0ad4cae..9d53725543 100644 --- a/unix/coverage.c +++ b/unix/coverage.c @@ -22,6 +22,10 @@ STATIC mp_obj_t extra_coverage(void) { mp_printf(&mp_plat_print, "%b %b\n", 0, 1); // bools mp_printf(&mp_plat_print, "%s\n", NULL); // null string mp_printf(&mp_plat_print, "%t\n"); // non-format char + mp_printf(&mp_plat_print, "%d\n", 0x80000000); // should print signed + mp_printf(&mp_plat_print, "%u\n", 0x80000000); // should print unsigned + mp_printf(&mp_plat_print, "%x\n", 0x80000000); // should print unsigned + mp_printf(&mp_plat_print, "%X\n", 0x80000000); // should print unsigned } // vstr -- cgit v1.2.3