diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/print_ut.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/print_ut.c b/test/print_ut.c index 1aa68be7a9a..d8e9da8fa8f 100644 --- a/test/print_ut.c +++ b/test/print_ut.c @@ -44,6 +44,10 @@ static void efi_ut_print(void) snprintf(str, sizeof(str), "_%pD_", buf); assert(!strcmp("_/SD(3)_", str)); + + /* NULL device path */ + snprintf(str, sizeof(str), "_%pD_", NULL); + assert(!strcmp("_<NULL>_", str)); #endif } |