1 parent adf22c1 commit 369e7fdCopy full SHA for 369e7fd
2 files changed
tests/unix/extra_coverage.py.exp
@@ -11,6 +11,7 @@ false true
11
2147483648
12
80000000
13
14
+abc
15
# vstr
16
tests
17
sts
unix/coverage.c
@@ -154,6 +154,7 @@ STATIC mp_obj_t extra_coverage(void) {
154
mp_printf(&mp_plat_print, "%u\n", 0x80000000); // should print unsigned
155
mp_printf(&mp_plat_print, "%x\n", 0x80000000); // should print unsigned
156
mp_printf(&mp_plat_print, "%X\n", 0x80000000); // should print unsigned
157
+ mp_printf(&mp_plat_print, "abc\n%"); // string ends in middle of format specifier
158
}
159
160
// vstr
0 commit comments